dsfew215211 2014-03-31 21:15
浏览 47
已采纳

如何在Wordpress页面上使用get_the_tags?

I've added tags to my Wordpress pages (which are working fine) but I'm trying to list them on the page.

The idea is to get all the tags a particular page (not post) has and format them. What I'm getting is either 2 random (unrelated) tags, or the entire tag list. I'm not sure what I'm missing here.

$relatedArea = the_slug(false); //gets the slug of the page - false represses the echo statement

$allTags = get_tags(); //gets all the tags
$areasOfLaw = array(); //starts the array

// check if the tag is included on the page
foreach ($allTags as $tag) {
  if(has_tag($relatedArea)) {
    $areasOfLaw[] = $tag; //add to the array
  }
}

Tried $areasOfLaw = get_the_tags() but it gave me random tags.

Here's the formatting, but I'm pretty sure it's working correctly.

foreach($areasOfLaw as $tag){
    echo '
        <a href="'.get_site_url().'/services/'.$tag->slug.'">
        <li>'.$tag->name.'
        <span class="glyphicon glyphicon-chevron-right pull-right action"></span>
        </li></a>';
    }

edit: this is my tag support included in the functions file

// add tag support to pages
function tags_support_all() {
    register_taxonomy_for_object_type('post_tag', 'page');
}

// ensure all tags are included in queries
function tags_support_query($wp_query) {
    if ($wp_query->get('tag')) $wp_query->set('post_type', 'any');
}

// tag hooks
add_action('init', 'tags_support_all');
add_action('pre_get_posts', 'tags_support_query');
  • 写回答

2条回答 默认 最新

  • duan1979768678 2014-03-31 21:58
    关注

    The get_the_tags() function returns all the tags associated with a post and if you use it inside the loop then you may use it like this:

    $tags = get_the_tags();
    

    But if you use it outside of the loop then you have to supply the ID of the post for which you want to retrieve that tags, for example to get all the tags of post whose ID is 10:

    $tags = get_the_tags(10);
    

    Now you can loop $tags like this:

    foreach($tags as $tag)
    {
        echo $tag->name . ' ';
    }
    

    Read more on Codex.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵