bp_xprofile_component :: lain_includes()
迟到包括方法。
描述
仅在特定页面上加载某些代码。
来源
文件:bp-xprofile / classes / class-bp-xprofile-component.php
公共函数LaTe_Includes(){//保释如果phpunit正在运行。if(定义('bp_tests_dir')){return;} //保释如果不在用户页面上。if(!bp_is_user()){return;} //用户导航。if(bp_is_profile_component()){需要$ this-> path。'bp-xprofile / screens / public.php';//动作 - 删除化身。if(is_user_logging_in()&& bp_is_user_change_avatar()&& bp_is_action_variable('delete-avatar',0)){需要$ this-> path。'bp-xprofile / apactions / delete-avatar.php'; } // Sub-nav items. if ( is_user_logged_in() && in_array( bp_current_action(), array( 'edit', 'change-avatar', 'change-cover-image' ), true ) ) { require $this->path . 'bp-xprofile/screens/' . bp_current_action() . '.php'; } } // Settings. if ( is_user_logged_in() && bp_is_user_settings_profile() ) { require $this->path . 'bp-xprofile/screens/settings-profile.php'; } }
变更乐
版本 | 描述 |
---|---|
Buddypress 3.0.0. | 介绍。 |