doushenyi9104 2018-01-31 09:58
浏览 70
已采纳

WordPress:get_tag_link()返回空字符串

In the docs it states that you need to pass get_tag_link() an argument, which is the tags ID, but I need to be able to access this during the loop.

Maybe I'm using the wrong function here. I'm trying to wrap an image with an <a> tag that is supposed to represent the tag.

And yea, only passing it a variable ($tag_id) isn't going to do the trick but I'm not sure how I should represent the $tag_id to account for the loop.

Look in the start of the HTML from the echo, article > header you will see an <a> that is wrapping the the_post_thumbnail([300, 200]).

if (have_posts()) {
          while (have_posts()) {
            the_post();

            echo '
                  <article class="blog-post col-12 col-sm-8 offset-sm-2 col-md-6 offset-md-0 col-lg-4 mb-5 mb-md-0">
                    <header class="col-12 mb-3 text-center">
                      <a href="',get_tag_link($tag_id),'">',the_post_thumbnail([300, 200]),'</a>
                    </header>

                    <div class="col-12 mb-3 text-center">
                      <small>',the_category(' '),'</small>
                    </div>
                    <div class="col-12 mx-auto mb-3">
                      <h2 class="h2">
                        <a href="',the_permalink(),'">',the_title(),'</a>
                      </h2>
                    </div>
                    <div class="col-12 mx-auto mb-3">
                      <p class="lead">',the_excerpt(),'</p>
                    </div>
                  </article>
            ';
          }
        }
  • 写回答

2条回答 默认 最新

  • dongwo1234 2018-01-31 10:17
    关注

    First you need to get the post's tags and then pick one (as it can have multiple tags) or just use the first one. This will throw an error if there are no tags or php version is 5.2 (see below for a safer code).

    $tag_id = get_the_tags()[0]->term_id;
    

    Here is a safer code:

    $tags = get_the_tags();
    if(!empty($tags)){
        $tag_id = $tags[0]->term_id
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程