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条)

报告相同问题?

悬赏问题

  • ¥30 matlab appdesigner私有函数嵌套整合
  • ¥15 给我一个openharmony跑通webrtc实现视频会议的简单demo项目,sdk为12
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!
  • ¥20 有关esp8266连接阿里云
  • ¥15 C# 调用Bartender打印机打印
  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题