我正在使用 Anchor CMS。
一切都很好,除了标记为“草稿”的帖子仍在网站上的“相关帖子”部分实时显示,但我不知道为什么从我所见,只有已发布的帖子应该显示。
这是我用来在每篇文章底部显示相关帖子的代码:
函数.php
function related_posts($n) {
$posts = Post::get(Base::table('posts'), '=', 'published');
$postarr = array();
foreach($posts as $post) :
if($post->id != article_id()) {
if($post->category == article_category_id()) {
array_push($postarr, $post);
}
}
endforeach;
shuffle($postarr);
$postarr = array_slice($postarr, 0, $n);
return $postarr;
}
function article_category_id() {
if($category = Registry::prop('article', 'category')) {
$categories = Registry::get('all_categories');
return $categories[$category]->id;
}
}
文章.php
<?php foreach( related_posts(3) as $post) : ?>
<div class="similar-posts">
<div class="simi-alt">
<a href="<?= $post->slug; ?>"><?= $post->title; ?></a>
</div>
<p class="sim-desc"><?= $post->description; ?> <a href="<?= $post->slug; ?>">Read more..</a></p>
</div>
<?php endforeach; ?>