danjjohnson
7/19/2016 - 3:37 PM

Jetpack: Disable carousel for a specific post only

Jetpack: Disable carousel for a specific post only

function cl_tweak_carousel( $extra_data ) {
	global $post;
	if ( $post->ID == 23 ) {
		$extra_data = array();
	}
	return $extra_data;
}

add_filter( 'jp_carousel_add_data_to_container', 'cl_tweak_carousel');