Make Theme Options Native to Theme Customizer
Step 1: Register the setting in the customizer Add this to your wptuts_theme_customizer() function, which will register a new “Pagination” section, as well as a “Pagination Style” setting: /* Section: Pagination */ $wp_customize->add_section( ‘themeslug_pagination’, array( ‘title’ => __( ‘Pagination’, ‘themeslug’ ), ) ); $wp_customize->add_setting( ‘pagination_style’, array( ‘default’ => ‘next-previous-links’, ) ); $wp_customize->add_control( ‘pagination_style’, array( ‘label’ … Read more