bp_after_create_blog_content_template
Fires at the bottom of the blog creation template file.
Description
do_action( 'bp_after_create_blog_content_template' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_after_create_blog_content_template' );
- The following example is for adding a hook callback.
- // define the bp_after_create_blog_content_template callback
- function action_bp_after_create_blog_content_template( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_after_create_blog_content_template', 'action_bp_after_create_blog_content_template', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_after_create_blog_content_template', 'action_bp_after_create_blog_content_template', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /bp-themes/bp-default/blogs/create.php
- <?php do_action( 'bp_after_create_blog_content_template' ); ?>
- /bp-templates/bp-legacy/buddypress/blogs/create.php
- do_action( 'bp_after_create_blog_content_template' ); ?>