我希望有人能帮助我。我已经知道如何使用以下代码在 wordpress 中提取最新帖子:
<?php query_posts('posts_per_page=1'); ?>
<?php while (have_posts()): the_post(); ?>
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<?php the_excerpt(); ?>
<?php endwhile;?>
这很好用,但我想扩展这个功能。我希望能够根据特定类别拉帖子。例如,我正在处理的网站有一个名为“社交媒体”的页面,其中包含有关该主题的信息。它还有一个同名的博客类别。我想知道如何将帖子从博客的社交媒体部分拉到信息性社交媒体页面(等等 - 我们将有大约 10 个类别也需要它们的相关帖子)。
任何帮助将非常感激!谢谢!