Skip to content

Instantly share code, notes, and snippets.

View danielbxl's full-sized avatar

danielbxl

  • Belgium
View GitHub Profile
@lots0logs
lots0logs / child-theme-functions-php.php
Last active July 18, 2022 12:02
WordPress :: Divi Builder :: Post Slider :: Display projects instead of posts.
<?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');