我想在管理面板的“发布”区域添加短信。 是否有任何过滤器或操作需要编辑?
http://codex.wordpress.org/Plugin_API/Action_Reference
,例如
add_atction('in_admin_footer', 'blahblah');
function blahblah($content) {
$content .= '<strong> Please make sure you input correct data</strong>';
return $content;
}
'in_admin_footer'操作有助于向管理面板的真实页脚添加消息。 我想发布区域。
http://gyazo.com/8342ffb94ae1a829988257bf2506c3d6
(string(0)“”由in_admin_footer动作添加)
答案 0 :(得分:1)
尝试post_submitbox_misc_actions
操作挂钩。这些方面的东西:
function submitbox_callback() {
global $post;
if ($post->post_type == 'post') { //if you only want to display this on posts
echo '<strong> Please make sure you input correct data</strong>';
}
}
add_action( 'post_submitbox_misc_actions', 'submitbox_callback' );