有一个小技巧可能对你有帮助。我对BuddyPress一无所知,因此您必须根据需要调整解决方案。
WordPress将设置为静态首页的页面的帖子id存储在名为“page\\u on\\u front”的选项中。使用您选择的值更改该选项。
//Hook into init or within your function where you get the dynamic page/post
//Assume the page/post you want to set as front page has an ID = 345
//This check is necessary, if it is not set to \'page\' then the latest posts will be shown on homepage
if(get_option(\'show_on_front\') == \'page\')
update_option(\'page_on_front\', 345);
希望这有帮助!