";
$loader_script = "";
return $widget_container . $loader_script;
}
/**
* Init the shortcodes for the widget
*
* Available shortcodes:
* [addtruly-widget id=""]
* , where is your given AddTruly widget ID
*/
function addtruly_widget_init_shortcodes() {
function addtruly_widget_from_shortcode($atts = [], $content = null) {
$validated_atts = shortcode_atts(array('id' => '-1'), $atts);
$widget_id = $validated_atts['id'];
return addtruly_widget($widget_id);
}
add_shortcode('addtruly-widget', addtruly_widget_from_shortcode);
}
add_action('init', 'addtruly_widget_init_shortcodes');