Created
June 5, 2015 15:42
-
-
Save mikeyarce/692dd705f1b75456c9a6 to your computer and use it in GitHub Desktop.
Move Jetpack's Testimonials into a custom Panel in the Customizer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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