Created
February 26, 2014 16:51
-
-
Save codescribblr/9233452 to your computer and use it in GitHub Desktop.
DEPRECATED -- This is no longer necessary. -- Theme modification for showcase-video-tuts plugin to work properly....
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
| add_filter('acf/options_page/settings', 'showcase_options_page_settings'); | |
| function showcase_options_page_settings( $settings ) { | |
| $settings['title'] = 'Site Options'; | |
| $settings['slug'] = 'custom-theme-options'; | |
| $settings['menu'] = 'Site Options'; | |
| $settings['pages'] = array_merge(array('Site Options'), $settings['pages']); | |
| return $settings; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment