Convert an theme options page to use in customize.php also?
You need to add a control to it. function mytheme_customize_register( $wp_customize ) { $wp_customize->add_section( ‘mytheme_options’, array( ‘title’ => __( ‘MyTheme Options’, ‘ppr’ ), ‘priority’ => 35, ‘description’ => __(‘Allows you to customize some example settings for MyTheme.’, ‘ppr’), ) ); $wp_customize->add_setting( ‘link_textcolor’, array( ‘default’ => get_option( ‘your_theme_page_option_value’ ), THIS IS THE OPTION NAME YOU CREATED … Read more