【问题标题】:I want to add a link to every post in a single category on wordpress我想在 wordpress 上的单个类别中添加指向每个帖子的链接
【发布时间】:2022-08-14 09:19:43
【问题描述】:

由于标题代表我需要的内容,我想在特定类别的内容之后为每个帖子添加一个链接。喜欢\"欲了解更多详情,请转到https://stackoverflow.com/\" 我该怎么做?谢谢。

    标签: wordpress


    【解决方案1】:

    您可以使用in_category() 来检查类别并输入您想要的任何内容:

    if ( in_category('name or slug here') ) :
      echo 'For more details go to <a href="https://stackoverflow.com/">Stack Overflow</a>';
    endif;
    

    您可以在 single.php 文件中的 the_content() 之后添加它。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多