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
    			);
    		}
    
    		$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];