wordpress文章详情页的标签控制显示数量
发布网友
发布时间:2022-05-18 16:59
我来回答
共2个回答
热心网友
时间:2023-10-20 10:07
我们一般使用该函数显示tag
wp_tag_cloud( $args );
$args = array(
'smallest' => 8,
'largest' => 22,
'unit' => 'pt',
'number' => 45,
'format' => 'flat',
'separator' => \"\n\",
'orderby' => 'name',
'order' => 'ASC',
'exclude' => null,
'include' => null,
'topic_count_text_callback' => default_topic_count_text,
'link' => 'view',
'taxonomy' => 'post_tag',
'echo' => true );
?>
其中
number:显示标签数量。(值为’0′时显示所有标签),默认值为45
通过设置number可以实现你想要的功能
追问这个45原先已经修改过,是无效的。
追答请你把显示tag的代码贴出来
热心网友
时间:2023-10-20 10:08
一楼给的函数应该有作用。
如果不行,也可以换一种思路。
比如,控件标签的ID。控制标签显示内容的宽度,高度。