股票“类别”小部件uses wp_list_categories()
and passes the arguments though widget_categories_args
在这个过程中。
716 /**
717 * Filter the arguments for the Categories widget.
718 *
719 * @since 2.8.0
720 *
721 * @param array $cat_args An array of Categories widget options.
722 */
723 wp_list_categories( apply_filters( \'widget_categories_args\', $cat_args ) );
你或许应该能够深入讨论你需要的论点。
The stock archives widget does essentially the same:
374 /**
375 * Filter the arguments for the Archives widget.
376 *
377 * @since 2.8.0
378 *
379 * @see wp_get_archives()
380 *
381 * @param array $args An array of Archives option arguments.
382 */
383 wp_get_archives( apply_filters( \'widget_archives_args\', array(
384 \'type\' => \'monthly\',
385 \'show_post_count\' => $c
386 ) ) );
所以。。。
你们有没有找到过滤小部件输出的方法?
对
尽管如此,我还是会尝试创建自己的定制小部件,而不是尝试过滤核心小部件。