EduardET

load custom contact form module into a child theme

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