Skip to content

Instantly share code, notes, and snippets.

View MrsDivi's full-sized avatar

Tanya Quintieri MrsDivi

  • ProZ.com
  • Czechia
  • 22:45 (UTC +02:00)
View GitHub Profile
@MrsDivi
MrsDivi / Shortcode
Created August 5, 2018 08:32
Shortcode für das Einfügen von Modulen in Divi
[showmodule id="123"]
@MrsDivi
MrsDivi / functions.php
Created August 5, 2018 08:02
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');