在首页WordPress中显示某个分类的最新博客文章

我正在Wordpress中创建自定义主题, 并且希望该主题显示一个主页, 该页面显示先前创建的某个类别的最新(仅一个)帖子。假设这个类别称为:” specificcategory”。

我制作了home.php模板文件, 并将该函数放入其中:

<?php query_posts('posts_per_page=1'); ?>
            <?php if (have_posts()) : while(have_posts()) : the_post();?>
                    <?php the_content();?>
            <?php endwhile; endif;?>

我希望它会显示最新的帖子(确实如此), 但不显示特定类别的信息, 它只是显示任何类别的最新信息。

PS:我已经创建了一个archive-specificcategory.php, 用于显示该特定类别帖子的列表。

那我做错了什么?


#1


将查询更改为query_posts(‘posts_per_page = 1&cat = 1’), 其中1是所需类别的ID。

请参阅官方代码参考的本部分。

来源:

https://www.srcmini02.com/63916.html

微信公众号
手机浏览(小程序)

Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_37555.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
0
分享到:
没有账号? 忘记密码?