Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/12/2021 08:43:39 PM (4 years ago)
Author:
espellcaste
Message:

Update all references from wp_parse_args to bp_parse_args.

Also, add WPCS improvements to align bp_parse_args correctly.

Props imath
Fixes #8564

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/bp-members-blocks.php

    r13007 r13108  
    2424    $bp = buddypress();
    2525
    26     $block_args = wp_parse_args(
     26    $block_args = bp_parse_args(
    2727        $attributes,
    2828        array(
     
    181181    $bp = buddypress();
    182182
    183     $block_args = wp_parse_args(
     183    $block_args = bp_parse_args(
    184184        $attributes,
    185185        array(
     
    367367 */
    368368function bp_members_render_dynamic_members_block( $attributes = array() ) {
    369     $block_args = wp_parse_args(
     369    $block_args = bp_parse_args(
    370370        $attributes,
    371371        array(
Note: See TracChangeset for help on using the changeset viewer.