- This topic has 4 replies, 2 voices, and was last updated 2 months ago by .
-
Topic
-
Hey there!
I’m hoping to add customizer settings pages to the theme Page Builder Framework. Here is what I have so far.
add_filter( 'mb_settings_pages', function ( $settings_pages ) { $settings_pages[] = array( 'id' => 'fmstyling', 'option_name' => 'theme_mods_page-builder-framework-child', 'menu_title' => 'General Styling', 'parent' => 'themes.php', 'customizer' => true, // THIS ); return $settings_pages; } );
I copied this from your documentation page and changed out theme_mods_justread with my theme’s slug. I’m still unclear what the ‘parent’ is? I don’t really know why that’s there or what it’s accomplishing?
At any rate, I’m not seeing this populate anywhere?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.