how to find the posts page

时间:2022-01-22 作者:tiago calado

我已经创建了档案。php文件并使其显示所有帖子,还有一个显示时间线的侧栏,例如2022年1月2022日。当我点击2022年1月的时候,我有一个页面显示了2022年1月的所有帖子,url是https://mywebsite.com/2022/01现在我想知道获取所有帖子的url是什么?如果我运行这段代码,我会在博客上找到答案。

if ( get_option( \'page_for_posts\' ) ) {
   echo \'<a href="\'.esc_url(get_permalink( get_option( \'page_for_posts\' ) )).\'">\'.esc_html__( \'All posts\', \'textdomain\' ).\'</a>\';
} else {
   echo \'<a href="\'.esc_url( home_url( \'/?posts=post\' ) ).\'">\'.esc_html__( \'Blog\', \'textdomain\' ).\'</a>\';
} 

1 个回复
最合适的回答,由SO网友:tiago calado 整理而成

这是设置->;阅读,我有一个头版。php这就是为什么我没有设置主页显示

enter image description here