1

我正在使用 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; ?>
4

1 回答 1

0

我不知道这个 CMS 是关于什么的,但是网站上的文档不太好。

我刚刚下载来调查 Post 类。

class Post extends Base {
...
private static function get($row, $val) { 
...
->where(Base::table('posts.'.$row), '=', $val)

从我的角度来看,这意味着您应该发送 2 个参数 - 一个是字段名称,第二个是字段值。

所以我猜,但您可以尝试在代码中更改此行:

$posts = Post::get(Base::table('posts'), '=', 'published');

对此:

$posts = Post::get(Base::table('posts'), 'status', 'published');

甚至:

$posts = Post::get('status', 'published');
于 2015-02-05T18:28:52.067 回答