请理解我是wordpress和php新手。
通过向函数中添加以下代码,我在admin中的媒体按钮中添加了一个媒体按钮。php文件:
function add_custom_media_button() {
echo \'<a href="#TB_inline?inlineId=custommedia_container" id="insert-my-media" class="button thickbox">Add custom media</a>\';
}
add_action(\'media_buttons\', \'add_custom_media_button\', 15);
add_action( \'admin_footer\', \'add_inline_popup_content\' );
function add_inline_popup_content() {
$cu = wp_get_current_user();
$cusername = $cu->user_login;
echo \'<div id="custommedia_container" style="display:none;">\';
echo \'<iframe class="mediaselectoriframe" title="Archivado" width="100%" height="99%" title="cosas" src="http://nephila.cloudapp.net/GAdEWeb/wpsearch.aspx?wpuser=\' . $cusername . \'&wplang=\' . $clocale . \'" frameborder="0"></iframe>\';
echo \'</div>\';
}
现在,这正在创建帖子页面,但在其他任何地方都不起作用。
我可以在编辑帖子、创建页面和编辑页面中看到我的按钮,但thickbox中没有任何内容。