本文整理汇总了PHP中bp_get_group_create_button函数的典型用法代码示例。如果您正苦于以下问题:PHP bp_get_group_create_button函数的具体用法?PHP bp_get_group_create_button怎么用?PHP bp_get_group_create_button使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bp_get_group_create_button函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: bp_group_create_button
/**
* Output the Create a Group button.
*
* @since BuddyPress (2.0.0)
*/
function bp_group_create_button()
{
echo bp_get_group_create_button();
}
示例2: bp_get_group_create_nav_item
/**
* Get the Create a Group nav item.
*
* @since 2.2.0
*
* @return string
*/
function bp_get_group_create_nav_item()
{
// Get the create a group button.
$create_group_button = bp_get_group_create_button();
// Make sure the button is available.
if (empty($create_group_button)) {
return;
}
$output = '<li id="group-create-nav">' . $create_group_button . '</li>';
/**
* Filters the Create a Group nav item.
*
* @since 2.2.0
*
* @param string $output HTML output for nav item.
*/
return apply_filters('bp_get_group_create_nav_item', $output);
}
示例3: bp_get_group_create_nav_item
/**
* Get the Create a Group nav item.
*
* @since BuddyPress (2.2.0)
*
* @return string
*/
function bp_get_group_create_nav_item()
{
// Get the create a group button
$create_group_button = bp_get_group_create_button();
// Make sure the button is available
if (empty($create_group_button)) {
return;
}
$output = '<li id="group-create-nav">' . $create_group_button . '</li>';
return apply_filters('bp_get_group_create_nav_item', $output);
}
示例4: bp_legacy_theme_group_create_button
/**
* Add the Create a Group button to the Groups directory title.
*
* bp-legacy puts the Create a Group button into the page title, to mimic
* the behavior of bp-default.
*
* @since BuddyPress (2.0.0)
* @todo Deprecate
*
* @param string $title Groups directory title.
* @return string
*/
function bp_legacy_theme_group_create_button($title)
{
return $title . ' ' . bp_get_group_create_button();
}
示例5: do_action
<?php
do_action('bp_before_directory_groups_page');
?>
<div id="buddypress">
<header class="group-header page-header">
<div id="item-statistics" class="follows">
<h1 class="main-title"><?php
buddyboss_page_title();
?>
</h1>
<span class="create-a-group"><?php
echo bp_get_group_create_button();
?>
</span>
<div class="numbers">
<span>
<p><?php
echo groups_get_total_group_count();
?>
</p>
<p><?php
_e('Groups', 'boss');
?>
</p>
</span>
</div>
</div><!-- #item-statistics -->