bp_blogs_activity_created_blog_primary_link
Filters the activity created blog primary link.
Description
apply_filters( 'bp_blogs_activity_created_blog_primary_link', (string) $bp_blogs_get_blogmeta, (int) $recorded_blog_blog_id );
Parameters (2)
- 0. $bp_blogs_get_blogmeta (string) =>
bp_blogs_get_blogmeta( $recorded_blog->blog_id, 'url' )
- The bp blogs get blogmeta.
- 1. $recorded_blog_blog_id (int)
- The recorded blog blog id.
Usage
- To run the hook, copy the example below.
- $bp_blogs_get_blogmeta = apply_filters( 'bp_blogs_activity_created_blog_primary_link', $bp_blogs_get_blogmeta, $recorded_blog_blog_id );
- if ( !empty( $bp_blogs_get_blogmeta ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_blogs_activity_created_blog_primary_link callback
- function filter_bp_blogs_activity_created_blog_primary_link( $bp_blogs_get_blogmeta, $recorded_blog_blog_id ) {
- // make filter magic happen here...
- return $bp_blogs_get_blogmeta;
- };
- // add the filter
- add_filter( 'bp_blogs_activity_created_blog_primary_link', 'filter_bp_blogs_activity_created_blog_primary_link', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_blogs_activity_created_blog_primary_link', 'filter_bp_blogs_activity_created_blog_primary_link', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /bp-blogs/bp-blogs-activity.php
- 'primary_link' => apply_filters( 'bp_blogs_activity_created_blog_primary_link', bp_blogs_get_blogmeta( $recorded_blog->blog_id, 'url' ), $recorded_blog->blog_id ),