Automatically set Homepage 时间:2020-02-16 作者:Pandit Ji 我想当我发布任何页面时,它也会在我的wordpress网站中自动设置为主页。。请帮忙 1 个回复 SO网友:TomC 您要使用update_option 为此。https://developer.wordpress.org/reference/functions/update_option/function set_home_page($post_id) { update_option( \'page_on_front\', $post_id ); update_option( \'show_on_front\', \'page\' ); } add_action( \'publish_post\', \'set_home_page\' ); 文章导航