第一
我正在更改后端/管理。。。
你的描述听起来像是在破解Core。不要那样做。这是一场维护噩梦。
行动挂钩in_admin_header
要放置内容的位置。
190 /**
191 * Fires at the beginning of the content section in an admin page.
192 *
193 * @since 3.0.0
194 */
195 do_action( \'in_admin_header\' );
使用该挂钩添加内容。
function admin_content_wpse_144936() {
echo \'howdy\';
}
add_action(\'in_admin_header\',\'admin_content_wpse_144936\');
如果您查看源代码中该钩子下面的75行左右,您将看到其他几个可能也很有前途的钩子。
这个admin_head-$hook_suffix
钩子可以让您很好地控制添加内容的时间。例如:
function admin_content_wpse_144936() {
echo \'howdy\';
}
function add_admin_content_wpse_144936() {
add_action(\'in_admin_header\',\'admin_content_wpse_144936\');
}
add_action(\'admin_head-edit.php\',\'add_admin_content_wpse_144936\');