Skip to content

Instantly share code, notes, and snippets.

@MrsDivi
Created August 5, 2018 08:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrsDivi/ba88dbfd22253c48eb04ad977c7fc944 to your computer and use it in GitHub Desktop.
Save MrsDivi/ba88dbfd22253c48eb04ad977c7fc944 to your computer and use it in GitHub Desktop.
Code-Snippet für das Einbetten von Modulen in Divi per Shortcode
//Shortcode to show the module
function showmodule_shortcode($moduleid) {
extract(shortcode_atts(array('id' =>'*'),$moduleid));
return do_shortcode('[et_pb_section global_module="'.$id.'"][/et_pb_section]');
}
add_shortcode('showmodule', 'showmodule_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment