Hide Publish Now Metabox in Revive Old Posts

You might want to hide the Revive Old Posts Instant Sharing/Post on Publish metabox so that other Admins or Editors to not see the option when publishing posts (That way you can set the default option without worrying about them changing it):

To do simply download the small plugin below:

Download Plugin

DIY

Want to add the code yourself? Use the code block below:

function rop_hide_metabox_custom_styles() {
    echo '<style>
    #rop_publish_now_metabox{
        display: none;
    }
    </style>';
}
add_action('admin_head', 'rop_hide_metabox_custom_styles');
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.