Wordpress: Remove attachment fields

后端 未结 3 1842
悲哀的现实
悲哀的现实 2021-02-01 22:30

How do I remove attachment fields, like description and alt in media library of Wordpress attachments?

The following code use to work on old Wo

3条回答
  •  醉话见心
    2021-02-01 23:35

    The styles can be printed on /wp-admin/post.php using admin_print_styles-$page, and selecting the elements using the data attribute.


    It's possible to detect the current post type and only apply the rules on a given type:

    foreach( array( 'post.php', 'post-new.php' ) as $hook )
        add_action( "admin_print_styles-$hook", 'admin_styles_so_25894288');
    
    function admin_styles_so_25894288() {
        global $typenow;
        if( 'post' !== $typenow )
            return;
        ?>
        
        

提交回复
热议问题