Created
June 1, 2018 18:21
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ///////////////////////////////////// | |
| // 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