EduardET

functions to load custom blog module

Nov 13th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. /*================================================
  2. #3 Load custom Blog Module
  3. ================================================*/
  4. function divi_child_theme_setup() {
  5.     get_template_part( 'custom-modules/cbm' );
  6.     $cbm = new WPC_ET_Builder_Module_Blog();
  7.     remove_shortcode( 'et_pb_blog' );
  8.     add_shortcode( 'et_pb_blog', array($cbm, '_shortcode_callback') );
  9. }
  10. add_action('et_builder_ready', 'divi_child_theme_setup' );
Advertisement
Add Comment
Please, Sign In to add comment