Hide allow trackbacks/pingbacks
Method 1 (CSS) You can hide it for all non-admins via CSS: function hide_ping_track_wpse_103502() { if( get_post_type() === “post” ){ if( ! current_user_can( ‘manage_options’ ) ){ // only for non-admins echo “<style>.meta-options label[for=ping_status], #ping_status{display:none !important;} </style>”; } } } add_action( ‘admin_head-post.php’, ‘hide_ping_track_wpse_103502’ ); Before: After: Method 2 (PHP) You can also remove the native discussion … Read more