Changes between Initial Version and Version 1 of Ticket #22876
- Timestamp:
- 12/12/2012 10:02:11 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22876 – Description
initial v1 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 {{{if ( isset( $_GET['replytocom'] ) ) 4 add_action( 'wp_head', 'wp_no_robots' );}}} 5 5 6 6 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.