在 WordPress 6 中,调整标签云的数量限制
1、现在的标签云的数量默认为 45 个。如图1
2、准备提升标签云的数量限制,提升至 90 个。参考:Is there a way to add more tags to the tag cloud?
3、将这段代码添加到主题的 functions.php 文件中。进入后台 – 主题文件编辑器 – functions.php
function wpse_235908_tag_cloud_args( $args ) { $args['number'] = 90; // the number of tags you want to display. return $args; } add_filter( 'widget_tag_cloud_args', 'wpse_235908_tag_cloud_args' );
4、刷新页面,标签云的数量限制已经调整为 90 个,符合预期。以后每一次升级主题后,需要重新编辑一次。
近期评论