Last active
December 21, 2015 13:19
-
-
Save barbwiredmedia/6312304 to your computer and use it in GitHub Desktop.
Wordpress - Functions: Call a Widget with a Shortcode
This file contains 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
function widget($atts) { | |
global $wp_widget_factory; | |
extract(shortcode_atts(array( | |
'widget_name' => FALSE | |
), $atts)); | |
$widget_name = wp_specialchars($widget_name); | |
if (!is_a($wp_widget_factory->widgets[$widget_name], 'WP_Widget')): | |
$wp_class = 'WP_Widget_'.ucwords(strtolower($class)); | |
if (!is_a($wp_widget_factory->widgets[$wp_class], 'WP_Widget')): | |
return ' | |
'.sprintf(__("%s: Widget class not found. Make sure this widget exists and the class name is correct"),''.$class.'').' | |
'; | |
else: | |
$class = $wp_class; | |
endif; | |
endif; | |
ob_start(); | |
the_widget($widget_name, $instance, array('widget_id'=>'arbitrary-instance-'.$id, | |
'before_widget' => '', | |
'after_widget' => '', | |
'before_title' => '', | |
'after_title' => '' | |
)); | |
$output = ob_get_contents(); | |
ob_end_clean(); | |
return $output; | |
} | |
add_shortcode('widget','widget'); | |
// Prints function | |
[widget widget_name="Your_Custom_Widget"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment