Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 133
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 133
Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 134
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 134
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 136
Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 138
Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 133
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 133
Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 134
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 134
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 136
Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 138
wordpress如何自定义tag标签? tag函数调用操作教程, 很多时候我们可以自定义一下tag标签, 可以给数量上面增加一些标签, 然后也可以给字体调整一下大小, 还可以在排序上面有一个顺序的设置, 如何操作?
wp_tag_cloud(string | array $args);
$args = array( 'smallest' => 8, //字体最小 'largest' => 22, //字体最大 'unit' => 'pt', //字体单位 'number' => 45, //显示多少个标签 'format' => 'flat', //显示的格式. 'separator' => "\n", //显示标签之间的空格 'orderby' => 'name', 'order' => 'ASC', 'exclude' => null, 'include' => null, 'link' => 'view', 'taxonomy' => 'post_tag', 'echo' => true, );
smallest —— 标签字体最小(包含文章最少的标签). largest ——标签字体最大(包含文章最多的标签). unit —— 文字单位. number —— 显示多少个标签. format —— 所显示的云的格式. 'flat'、(默认值)标签被"separator"参数所定义的空格分隔. 'list'、标签在ul标签中. 'array'、标签在数组中, 数组被返回, 而非显示. separator —— 显示标签之间的文本/空格. . 默认值:'\n' (空格) orderby —— 标签排序方式. order —— 排序. exclude —— 排除指定标签. include —— 包括指定标签. link —— 设置链接, 允许编辑某个指定标签. 有效值包括: 'view';'edit'. taxonomy —— 用以生成云的分类法. echo —— 是否输出结果.
wp_tag_cloud("smallest=8&largest=22&number=20&format=flat&orderby=count&order=DESC);
我们一般都是用到上面的这种写法, 简单使用一些, 当然我们也可以使用第一种方法, 那种比较整洁一点.