bp_get_activity_content, $this->activity[content]

bp_get_activity_content, $this->activity[content]

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1

apply_filters('bp_get_activity_content, $this->activity[content]') is found 1 times:

  • /app/Common/Standalone/BuddyPress/Component.php line 249
    			// The `content_rendered` is AIOSEO specific.
    			$this->activity['content_rendered'] = $this->activity['content'] ?? '';
    			if ( ! empty( $this->activity['content'] ) ) {
    				// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
    				$this->activity['content_rendered'] = apply_filters( 'bp_get_activity_content', $this->activity['content'] );
    				// phpcs:enable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
    			}
    
    			return;
    		}