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
<?php | |
/* DON'T copy the first line (above) if your functions.php already has it. | |
* ---------------------------------------------------------------------- */ | |
function my_et_theme_setup() { | |
if ( class_exists( 'ET_Builder_Module_Post_Slider' ) ) { | |
get_template_part( 'my-main-modules' ); | |
add_filter( 'my_et_post_slider_args', 'my_et_post_slider_args_cb' ); | |
$et_pb_post_slider = new My_ET_Builder_Module_Post_Slider(); | |
remove_shortcode('et_pb_post_slider'); |