Skip to content

Instantly share code, notes, and snippets.

@natenault
Created January 18, 2018 09:01
Show Gist options
  • Save natenault/3f8d47facd907bdc962691247e112282 to your computer and use it in GitHub Desktop.
Save natenault/3f8d47facd907bdc962691247e112282 to your computer and use it in GitHub Desktop.
/**
* Customize the CPT Archive Settings page menu label
*
* @param string $label
* @return string
*/
function nn_cpt_archive_settings_menu_label( $label ) {
$label = __( 'Settings', 'natenault' );
return $label;
}
add_filter( 'genesis_cpt_archive_settings_menu_label', 'nn_cpt_archive_settings_menu_label' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment