所以我为我的“主题”页面创建了一个自定义页面模板。
我想要做的是将一些 PHP 添加到我的主题页面使用的自定义页面模板中,以从所选类别中检索 3 个最新帖子的永久链接。
E.g.
(From post category 1)
--> Permalink for post 1
--> Permalink for post 2
--> Permalink for post 3
到目前为止,我的代码如下:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<ul>
<?php
$category_posts = new WP_Query('cat=consumer-trust&showposts=3');
while ($category_posts ->have_posts()) : $category_posts->the_post();?>
<li>
<a class="yourclass" href="<?php the_permalink(); ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?> </a></li>
<?php endwhile; ?>
然而,问题是在 WP_Query 中更改 cat 似乎没有任何区别。我试过数字和类别名称,但都不起作用。
有人可以建议吗?此代码将在预期页面上出现三次,用于三个不同的类别。