the_widget [ WordPress Function ]
the_widget ( $widget, $instance = array(), $args = array() )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Output an arbitrary widget as a template tag
Source
<?php
function the_widget($widget, $instance = array(), $args = array()) {
global $wp_widget_factory;
$widget_obj = $wp_widget_factory->widgets[$widget];
if ( !is_a($widget_obj, 'WP_Widget') )
return;
$before_widget = sprintf('<div class="widget %s">', $widget_obj->widget_options['classname'] );
$default_args = array( 'before_widget' => $before_widget, 'after_widget' => "</div>", 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>' );
$args = wp_parse_args($args, $default_args);
$instance = wp_parse_args($instance);
do_action( 'the_widget', $widget, $instance, $args );
$widget_obj->_set(-1);
$widget_obj->widget($args, $instance);
}
?>
Examples [ wp-snippets.com ]
Kullanýcý Tartýþmalarý [ wordpress.org ]
- HarleyB on "Edit pre-built widget from theme..?"
- michalien on "use the_widget to call up multiple instances of a widget"
- michalien on "Using the_widget to call up a specific WP_Widget_Text instance"
- -JFK- on "calling a widget from anywhere in a theme"
- -JFK- on "calling a widget from anywhere in a theme"
- Rev. Voodoo on "calling a widget from anywhere in a theme"
- -JFK- on "calling a widget from anywhere in a theme"
- yenerich on "calling a widget from anywhere in a theme"
- dvanliere@gmail.com on "How to use the_widget() to ignore a widget?"
- digitalnature on "Request: get_the_widget() function"