bp_get_blog_create_button ()
获取Create a Site按钮。
描述
返回
(假|字符串)
源
文件:bp-blogs / bp-blogs-template.php
函数bp_get_blog_create_button() {if (!Is_user_logged_in()){返回false;} if (!Bp_blog_signup_enabled()){返回false;} $button_args = array('id' => 'create_blog', 'component' => 'blogs', 'link_text' => __('Create a Site', 'buddyboss'), 'link_class' => 'blog-create no-ajax', 'link_href' => trailingslashit(bp_get_blogs_directory_permalink()。'create'), 'wrapper' => false, 'block_self' => false,);/** *过滤创建站点按钮。* * @since BuddyPress 2.0.0 * * @param array $button_args用于创建站点按钮的参数数组。*/返回bp_get_button(apply_filters('bp_get_blog_create_button', $button_args));}
更新日志
版本 | 描述 |
---|---|
BuddyPress 2.0.0 | 介绍了。 |