wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



add_rewrite_rule › WordPress Function

Da2.1.0
Deprecaton/a
add_rewrite_rule ( $regex, $query, $after = 'bottom' )
Parametri: (3)
  • (string) $regex Regular expression to match request against.
    Richiesto:
  • (string|array) $query The corresponding query vars for this rewrite rule.
    Richiesto:
  • (string) $after Optional. Priority of the new rule. Accepts 'top' or 'bottom'. Default 'bottom'.
    Richiesto: No
    Default: 'bottom'
Definito a:
Codex:
ChangeLog:
  • 4.4.0

Adds a rewrite rule that transforms a URL structure to a set of query vars.

Any value in the $after parameter that isn't 'bottom' will result in the rule being placed at the top of the rewrite rules.


Sorgenti

function add_rewrite_rule( $regex, $query, $after = 'bottom' ) {
	global $wp_rewrite;

	$wp_rewrite->add_rule( $regex, $query, $after );
}