class Basics {
public function build_frontend_post_form( $blog_object ) {
switch_to_blog( $blog_object->blog_id );
if( !( current_user_can( \'administrator\' ) and current_user_can( \'publish_posts\' ) ) ) { restore_current_blog(); return false; }
restore_current_blog();
#DO STUFF
}
}
在排除中(无论如何,如果我的逻辑没有必要的话),我需要使用它restore\\u current\\u blog,或者足够返回false?那么在这种情况下,基本博客是否会在功能完成后恢复?