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
67                 *
68                 * @since 2.8.0
69                 * @since 4.9.0 Added the `$instance` parameter.
70                 *
71                 * @see wp_get_archives()
72                 *
73                 * @param array $args     An array of Archives widget drop-down arguments.
74                 * @param array $instance Settings for the current Archives widget instance.
75                 */
76                $dropdown_args = apply_filters(
77                     'widget_archives_dropdown_args',
78                     array(
79                          'type'            => 'monthly',
80                          'format'          => 'option',
81                          'show_post_count' => $count,
82                     ),
83                     $instance
84                );
85