Changes between Version 1 and Version 2 of Ticket #22876
- Timestamp:
- 12/12/2012 10:02:27 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22876 – Description
v1 v2 1 1 in default-filters.php, we add a new action: 2 2 3 {{{if ( isset( $_GET['replytocom'] ) ) 4 add_action( 'wp_head', 'wp_no_robots' );}}} 3 {{{ 4 if ( isset( $_GET['replytocom'] ) ) 5 add_action( 'wp_head', 'wp_no_robots' ); 6 }}} 5 7 6 8 the issue is, wp_no_robots outputs noindex, nofollow. The noindex is fine, the nofollow stops any link equity from that URL, so that's actually a bad idea. Just noindex alone would be fine. Setting to priority high and severity to major as this is basically a regression.