Skip to content

Instantly share code, notes, and snippets.

@landbryo
Created June 1, 2018 18:21
Show Gist options
  • Select an option

  • Save landbryo/d07fac428cb57d5bada00156583b36f1 to your computer and use it in GitHub Desktop.

Select an option

Save landbryo/d07fac428cb57d5bada00156583b36f1 to your computer and use it in GitHub Desktop.
If you're using the Enfold WordPress theme you can use this function to customize the theme options title.
/////////////////////////////////////
// CHANGE THEME OPTIONS MENU TITLE //
/////////////////////////////////////
add_filter('avia_filter_backend_page_title', 'change_theme_title');
function change_theme_title() {
return 'Theme Options';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment