Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: widget_archives_dropdown_args

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
243           $d = ! empty( $instance['dropdown'] ) ? '1' : '0';
244           $title = apply_filters('widget_title', empty($instance['title']) ? __('Archives') : $instance['title'], $instance, $this->id_base);
245
246           echo $before_widget;
247           if ( $title )
248                echo $before_title . $title . $after_title;
249
250           if ( $d ) {
251 ?>
252           <select name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'> <option value=""><?php echo esc_attr(__('Select Month')); ?></option> <?php wp_get_archives(apply_filters('widget_archives_dropdown_args', array('type' => 'monthly', 'format' => 'option', 'show_post_count' => $c))); ?> </select>
253 <?php
254           } else {
255 ?>
256           <ul>
257           <?php wp_get_archives(apply_filters('widget_archives_args', array('type' => 'monthly', 'show_post_count' => $c))); ?>
258           </ul>
259 <?php
260           }
261