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-groups/bp-groups-blocks.php

    r13020 r13108  
    2424    $bp = buddypress();
    2525
    26     $block_args = wp_parse_args(
     26    $block_args = bp_parse_args(
    2727        $attributes,
    2828        array(
     
    191191    $bp = buddypress();
    192192
    193     $block_args = wp_parse_args(
     193    $block_args = bp_parse_args(
    194194        $attributes,
    195195        array(
     
    346346 */
    347347function bp_groups_render_dynamic_groups_block( $attributes = array() ) {
    348     $block_args = wp_parse_args(
     348    $block_args = bp_parse_args(
    349349        $attributes,
    350350        array(
Note: See TracChangeset for help on using the changeset viewer.