我相信你想要这样的东西:
EDITED:
function function_name( $hook ) {
global $post;
if ( $hook == \'post-new.php\' || $hook == \'post.php\' ) {
if ( \'post\' === $post->post_type ) {
// Do stuff
}
}
}
脚本通过以下方式连接:
add_action( \'admin_enqueue_scripts\', array( $this, \'function_name\' ) );
目标元盒是否由插件创建?您需要找到适当的挂钩或过滤器。可能有机会在输出之前过滤元盒标记。