bp_nouveau_groups_activity_post_form()
Display the current group activity post form if needed
Source Source
File: bp-templates/bp-nouveau/includes/groups/template-tags.php
function bp_nouveau_groups_activity_post_form() { /** * Fires before the display of the group activity post form. * * @since 1.2.0 */ do_action( 'bp_before_group_activity_post_form' ); if ( is_user_logged_in() && bp_group_is_member() ) { bp_get_template_part( 'activity/post-form' ); } /** * Fires after the display of the group activity post form. * * @since 1.2.0 */ do_action( 'bp_after_group_activity_post_form' ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |