Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created October 31, 2018 16:16
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 jchristopher/c08fb675c8eaf3c2bff0e214338a8427 to your computer and use it in GitHub Desktop.
Save jchristopher/c08fb675c8eaf3c2bff0e214338a8427 to your computer and use it in GitHub Desktop.
Customize OrganizeWP's menu label
<?php
add_filter( 'organizewp_menu_label', function( $label ) {
// Return the label you'd like to use.
return __( 'Site Content' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment