comments_rewrite_rules filter-hookWP 1.5.0

Filters rewrite rules used for comment feed archives.

Likely comments feed archives include /comments/feed/ and /comments/feed/atom/.

Usage

add_filter( 'comments_rewrite_rules', 'wp_kama_comments_rewrite_rules_filter' );

/**
 * Function for `comments_rewrite_rules` filter-hook.
 * 
 * @param string[] $comments_rewrite Array of rewrite rules for the site-wide comments feeds, keyed by their regex pattern.
 *
 * @return string[]
 */
function wp_kama_comments_rewrite_rules_filter( $comments_rewrite ){

	// filter...
	return $comments_rewrite;
}
$comments_rewrite(string[])
Array of rewrite rules for the site-wide comments feeds, keyed by their regex pattern.

Changelog

Since 1.5.0 Introduced.

Where the hook is called

WP_Rewrite::rewrite_rules()
comments_rewrite_rules
wp-includes/class-wp-rewrite.php 1359
$comments_rewrite = apply_filters( 'comments_rewrite_rules', $comments_rewrite );

Where the hook is used in WordPress

Usage not found.