Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: widget_comments_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
90            * @since 3.4.0
91            * @since 4.9.0 Added the `$instance` parameter.
92            *
93            * @see WP_Comment_Query::query() for information on accepted arguments.
94            *
95            * @param array $comment_args An array of arguments used to retrieve the recent comments.
96            * @param array $instance     Array of settings for the current widget.
97            */
98           $comments = get_comments(
99                apply_filters(
100                     'widget_comments_args',
101                     array(
102                          'number'      => $number,
103                          'status'      => 'approve',
104                          'post_status' => 'publish',
105                     ),
106                     $instance
107                )
108           );