Created
April 19, 2016 20:21
-
-
Save eduard-un/558f34139467353b637d5f07c4eebfa4 to your computer and use it in GitHub Desktop.
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 include <?php of your functions.php already has it */ | |
| function divi_child_theme_setup() { | |
| if ( class_exists('ET_Builder_Module')) { | |
| get_template_part( 'custom-modules/cpm' ); | |
| $cpm = new WPC_ET_Builder_Module_Portfolio(); | |
| remove_shortcode( 'et_pb_portfolio' ); | |
| add_shortcode( 'et_pb_portfolio', array($cpm, '_shortcode_callback') ); | |
| } | |
| } | |
| add_action('wp', 'divi_child_theme_setup', 9999); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment