欢迎访问服务器技术网-www.fuwuqijishu.com

Typecho利用Tag相关性调用相关文章

网站建设 fuwuqijishu 2年前 (2022-09-04) 65次浏览 0个评论 扫描二维码

我们在设计Typecho主题的时候尽量考虑少用插件支持,直接会在主题中内置代码实现功能。比如我们在文章单页中会调用相关文章,一般都是根据tag相关性调用的。这里我们可以有一个快速代码值得收藏,根据tag调取相关文章。

<?php $this->related(5)->to($relatedPosts); ?>
<ul>
<?php while ($relatedPosts->next()): ?>
<li><a href="<?php $relatedPosts->permalink(); ?>" title="<?php $relatedPosts->title(); ?>"><?php $relatedPosts->title(); ?></a></li>
<?php endwhile; ?>
喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2300.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900