Advertisement
OlgaT-ET

Code for the FW PSM in functions.php

Jun 26th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. function divi_child_theme_setup() {
  2.     if ( ! class_exists('ET_Builder_Module') ) {
  3.         return;
  4.     }
  5.  
  6.     get_template_part( 'custom-modules/cfwpm' );
  7.  
  8.     $cfwpm = new Custom_ET_Builder_Module_Post_Slider();
  9.  
  10.     remove_shortcode( 'et_pb_post_slider' );
  11.    
  12.     add_shortcode( 'et_pb_post_slider', array($cfwpm, '_shortcode_callback') );
  13.    
  14. }
  15.  
  16. add_action( 'wp', 'divi_child_theme_setup', 9999 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement