Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Created June 5, 2015 15:42
Show Gist options
  • Save mikeyarce/692dd705f1b75456c9a6 to your computer and use it in GitHub Desktop.
Save mikeyarce/692dd705f1b75456c9a6 to your computer and use it in GitHub Desktop.
Move Jetpack's Testimonials into a custom Panel in the Customizer
// If you haven't already, make sure you add theme support for Jetpack Testimonials
add_theme_support( 'jetpack-testimonial' );
//Now we will set the panel for the Testimonials to our custom panel
function marce_customize_register( $wp_customize ) {
$wp_customize->get_section( 'jetpack_testimonials' )->panel = 'my_panel';
}
add_action( 'customize_register', 'marce_customize_register', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment