Skip to content

Instantly share code, notes, and snippets.

@kimsible
Created September 15, 2020 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimsible/9caf0a97f62194a53f971ad71c064b80 to your computer and use it in GitHub Desktop.
Save kimsible/9caf0a97f62194a53f971ad71c064b80 to your computer and use it in GitHub Desktop.
WordPress - Snippet - Remove draft preview
if (is_admin()) {
function remove_draft_preview () {
?>
<style>
#minor-publishing-actions {
padding-top: 0;
}
#save-action #save-post, #save-action .spinner {
margin-top: 10px;
}
#post-preview {
display: none;
}
</style>
<?php
}
add_action('admin_head', 'remove_draft_preview');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment