bp_nouveau_activity_widget_query()

Get the activity query args for the widget.

Description

Return

(array) The activity arguments.

Source

File: bp-templates/bp-nouveau/includes/activity/functions.php

514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
function bp_nouveau_activity_widget_query() {
    $args       = array();
    $bp_nouveau = bp_nouveau();
 
    if ( isset( $bp_nouveau->activity->widget_args ) ) {
        $args = $bp_nouveau->activity->widget_args;
    }
 
    /**
     * Filter to edit the activity widget arguments.
     *
     * @since BuddyPress 3.0.0
     *
     * @param array $args The activity arguments.
     */
    return apply_filters( 'bp_nouveau_activity_widget_query', $args );
}

Changelog

Changelog
Version Description
BuddyPress 3.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.