web-dev-qa-db-fra.com

Y a-t-il un filtre/une action pour ajouter du contenu à WP metabox admin?

Je souhaite ajouter une instruction dans une méta-boîte de terme personnalisée. enter image description here

Y a-t-il un crochet pour ajouter ceci ou est-il plus simple d'utiliser JavaScript?

4
patnz

Je ne pouvais pas trouver un crochet alors je suis allé avec l'option 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;
}
3
patnz