Ajouter une règle de réécriture d’URL dans WordPress.

PHP
                    <?php 
function undfnd_add_rewrite_rule() {
		/**
		* @param string       $regex Expréssion régulière.
		* @param string|array $query Requête correspondate.
		* @param string       $after (optinnel) Priorité top | bottom (default).
		*/
		// Exemple: prévoir une URL pour supporter AMP (http(s)://www.domain.com/amp/{post_name})
    add_rewrite_rule( '^amp/([a-zA-Z0-9-]+)[/]?$', 'index.php?post_type=post&is_amp=1&name=$matches[1]', 'top' );
}
add_action( 'init', 'undfnd_add_rewrite_rule' );