我需要允许我的用户设置博客的默认页面。因此,当有人访问“www.example.com/blog/”时,他们看到的页面要么是博客帖子列表,要么是特定页面。
看起来我可以通过以下方式判断已设置了哪个页面:
get_option( \'page_on_front\' ): returns the ID of the static page assigned to the front page.
source
我可以使用以下方法更改此设置:
set_option( \'page_on_front\', 10 );
如何删除已设置的特定首页?我是否将其设置为null?
UPDATE:
我找到这个电话来检查是否显示博客帖子:
get_option( \'show_on_front\' ) == \'posts\';
source
顺便说一句,这是一个网络站点(Wordpress MU)。