widget_posts_args
Filters the arguments for the Recent Posts widget.
Использование
add_filter( 'widget_posts_args', 'wp_kama_widget_posts_args_filter', 10, 2 ); /** * Function for `widget_posts_args` filter-hook. * * @param array $args An array of arguments used to retrieve the recent posts. * @param array $instance Array of settings for the current widget. * * @return array */ function wp_kama_widget_posts_args_filter( $args, $instance ){ // filter... return $args; }
- $args(массив)
- An array of arguments used to retrieve the recent posts.
- $instance(массив)
- Array of settings for the current widget.
Список изменений
С версии 3.4.0 | Введена. |
С версии 4.9.0 | Added the $instance parameter. |
Где вызывается хук
wp-includes/widgets/class-wp-widget-recent-posts.php 73-82
apply_filters( 'widget_posts_args', array( 'posts_per_page' => $number, 'no_found_rows' => true, 'post_status' => 'publish', 'ignore_sticky_posts' => true, ), $instance )