真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在wordpress中自定義標(biāo)簽云與隨機(jī)獲取標(biāo)簽-創(chuàng)新互聯(lián)

本篇文章為大家展示了怎么在wordpress中自定義標(biāo)簽云與隨機(jī)獲取標(biāo)簽,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

創(chuàng)新互聯(lián)秉承實(shí)現(xiàn)全網(wǎng)價(jià)值營(yíng)銷的理念,以專業(yè)定制企業(yè)官網(wǎng),網(wǎng)站制作、成都網(wǎng)站制作,成都小程序開發(fā),網(wǎng)頁(yè)設(shè)計(jì)制作,手機(jī)網(wǎng)站制作,成都全網(wǎng)營(yíng)銷幫助傳統(tǒng)企業(yè)實(shí)現(xiàn)“互聯(lián)網(wǎng)+”轉(zhuǎn)型升級(jí)專業(yè)定制企業(yè)官網(wǎng),公司注重人才、技術(shù)和管理,匯聚了一批優(yōu)秀的互聯(lián)網(wǎng)技術(shù)人才,對(duì)客戶都以感恩的心態(tài)奉獻(xiàn)自己的專業(yè)和所長(zhǎng)。

用法


默認(rèn)用法

 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, 'child_of' => null(see Note!) ); ?>

注: child_of 不是一個(gè)直接的wp_tag_cloud數(shù)組的鍵(Key),但由于這個(gè)函數(shù)使用wp_parse_args()get_terms(),你可以通過get_terms()使用所有的數(shù)組鍵。

默認(rèn)情況下的輸出內(nèi)容:

  • smallest —— 最小的標(biāo)簽(使用次數(shù)最少)顯示大小為8

  • largest ——較大的標(biāo)簽(使用次數(shù)最多)顯示大小為22

  • unit —— 較大值最小值的單位為'pt'

  • number —— 至多顯示45個(gè)標(biāo)簽

  • format —— 以平面形式顯示所有標(biāo)簽(標(biāo)簽之間用空格隔開)

  • separator —— 顯示標(biāo)簽之間的空格

  • orderby —— 按名稱為標(biāo)簽排序

  • order —— 以升序排列

  • exclude —— 不排除任何標(biāo)簽

  • include —— 包括所有標(biāo)簽

  • topic_count_text_callback —— 使用函數(shù) default_topic_count_text

  • link —— 可視

  • taxonomy —— 用文章的標(biāo)簽作為云基礎(chǔ)

  • echo —— 輸出結(jié)果

但由于該方法把樣式集合到了里面,使用起來不怎么友好,如果想自定義讀取標(biāo)簽并修改展示樣式該怎么做呢,那也是非常簡(jiǎn)單的,看代碼實(shí)例,這里根據(jù)get_tags來獲取:

$html = '';
foreach (get_tags( array('number' => 50, 'orderby' => 'count', 'order' => 'DESC', 'hide_empty' => false) ) as $tag){
 $color = dechex(rand(0,16777215));
 $tag_link = get_tag_link($tag->term_id);
 $html .= "
  • name} Tag' class='{$tag->slug}' style='color:#{$color}'>";  $html .= "{$tag->name} ({$tag->count})
  • "; } $html .= ''; echo $html;

    如果要求隨機(jī)獲取標(biāo)簽在首頁(yè)顯示,那可以使用以下代碼,但這種做法貌似不利于seo,可得慎重使用

    //獲取隨機(jī)標(biāo)簽
    function get_rand_tags()
    {
     global $post, $wpdb;
     $sql = "SELECT * FROM {$wpdb->prefix}terms wt INNER JOIN {$wpdb->prefix}term_taxonomy wtt on wt.term_id=wtt.term_id where wtt.taxonomy='post_tag' ORDER BY RAND() LIMIT 20";
     $related_posts = $wpdb->get_results($sql);
     $html = '';
     foreach($related_posts as $tag)
     {
     $color = dechex(rand(0,16777215));
     $tag_link = get_tag_link($tag->term_id);
     $html .= "
  • name} Tag' class='{$tag->slug}' style='color:#{$color}'>";  $html .= "{$tag->name} ({$tag->count})
  • ";  }  $html .= '';  echo $html; }

    上述內(nèi)容就是怎么在wordpress中自定義標(biāo)簽云與隨機(jī)獲取標(biāo)簽,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


    當(dāng)前名稱:怎么在wordpress中自定義標(biāo)簽云與隨機(jī)獲取標(biāo)簽-創(chuàng)新互聯(lián)
    網(wǎng)址分享:http://weahome.cn/article/gohdj.html

    其他資訊

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部