aioseo_unrecognized_allowed_query_args

aioseo_unrecognized_allowed_query_args

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

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

apply_filters('aioseo_unrecognized_allowed_query_args') is found 1 times:

  • /app/Common/Main/QueryArgs.php line 143
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
        );
    }
     
    $allowedQueryArgs      = array_unique( $allowedQueryArgs );
    $allowedQueryArgs      = apply_filters( 'aioseo_unrecognized_allowed_query_args', $allowedQueryArgs );
    $currentUrlQueryArgs   = explode( '&', $currentUrlParsed['query'] );
    $recognizedQueryArgs   = [];
    $unRecognizedQueryArgs = [];
    foreach ( $currentUrlQueryArgs as $queryArg ) {
        $queryArgArray = explode( '=', $queryArg );
        $key           = $queryArgArray[0];