Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created November 19, 2018 06:38
Show Gist options
  • Save yousufansa/2a00d6b8ac0ce893de2189c228b18835 to your computer and use it in GitHub Desktop.
Save yousufansa/2a00d6b8ac0ce893de2189c228b18835 to your computer and use it in GitHub Desktop.
Electro - Brands carousel Items to show
if ( ! function_exists( 'electro_child_footer_bc_carousel_args' ) ) {
function electro_child_footer_bc_carousel_args( $carousel_args ) {
$carousel_args['items'] = 4;
$carousel_args['responsive']['1200'] = 4;
return $carousel_args;
}
}
add_filter( 'ec_footer_bc_carousel_args', 'electro_child_footer_bc_carousel_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment