是否有过滤器/操作来将内容添加到WP管理元数据库?

时间:2011-11-07 作者:patnz

我想在自定义术语元框中添加一条指令。enter image description here

是否有一个钩子来添加此内容,或者仅仅使用JavaScript是最简单的?

1 个回复
最合适的回答,由SO网友:patnz 整理而成

我找不到钩子,所以我选择了JS选项。

add_action( "admin_head-post-new.php", \'meta_box_instruction\' ); //new post
add_action( "admin_head-post.php", \'meta_box_instruction\' );    //edit post
function meta_box_instruction($d) { 
global $post;

    if($post->post_type == \'{YOUR POST TYPE}\' || $_GET[\'post_type\'] == \'{YOUR POST TYPE}\'):
    ?>

    <script type=\'text/javascript\'>
        jQuery(document).ready(function(){
            jQuery(\'<p>Some instruction</p>\').insertBefore(\'#taxonomy-{YOUR TAXONOMY NAME}\').parent();
        });
    </script>

    <?php
    endif;
}

结束

相关推荐

how to list parent terms only

我有以下代码来列出所有术语,但我需要一个代码,其中我只能列出“父术语”,因为它们也都有子术语<?php // output quick links list of countries $terms = get_terms(\'apptypes\'); if (count($terms)) { echo \"<h3>Quick links</h3>\"; echo \"<p style=\\\"text-align:center;\