Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jb510/b0bf5e6572754d64b810708bd77d3599 to your computer and use it in GitHub Desktop.
Save jb510/b0bf5e6572754d64b810708bd77d3599 to your computer and use it in GitHub Desktop.
Hide Post Editor Tip about permalinks being the last part of the URL on the WordPress post editor
<?php
/**
* Hide Post Editor Tip about permalinks
*/
add_action( 'admin_head', 's9_hide_permalink_tip' );
function s9_hide_permalink_tip() {
echo '<style>';
echo '#editor .edit-post-sidebar .editor-post-link .components-base-control + p { display: none; }';
echo '</style>';
}
@jb510
Copy link
Author

jb510 commented Aug 13, 2020

2020-06-09 at 8 08 AM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment