Skip to content

Instantly share code, notes, and snippets.

@codescribblr
Created February 26, 2014 16:51
Show Gist options
  • Select an option

  • Save codescribblr/9233452 to your computer and use it in GitHub Desktop.

Select an option

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....
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