Skip to content

Instantly share code, notes, and snippets.

@garvs
Created March 25, 2016 01:09
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 garvs/e2dd30413c99fe0f5b00 to your computer and use it in GitHub Desktop.
Save garvs/e2dd30413c99fe0f5b00 to your computer and use it in GitHub Desktop.
Block permalink edit button
<?php
/*
* Hide permalink 'Edit' button for 'author' role
*/
add_action('edit_form_before_permalink', 'ure_block_edit_slug');
function ure_block_edit_slug() {
if (!current_user_can('author')) {
return;
}
wp_enqueue_script('jquery');
?>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.edit-slug').hide();
});
</script>
<?php
}
@garvs
Copy link
Author

garvs commented Mar 25, 2016

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