W3cubDocs

/WordPress

WP_Rewrite::add_external_rule( string $regex, string $query )

Adds a rewrite rule that doesn’t correspond to index.php.

Parameters

$regex

(string) (Required) Regular expression to match request against.

$query

(string) (Required) The corresponding query vars for this rewrite rule.

Source

File: wp-includes/class-wp-rewrite.php

public function add_external_rule( $regex, $query ) {
		$this->non_wp_rules[ $regex ] = $query;
	}

Changelog

Version Description
2.1.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rewrite/add_external_rule