Changes between Version 1 and Version 2 of Ticket #22876

Timestamp:
12/12/12 10:02:27 (5 months ago)
Author:
joostdevalk
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22876 – Description

    v1 v2  
    11in default-filters.php, we add a new action: 
    22 
    3 {{{if ( isset( $_GET['replytocom'] ) ) 
    4         add_action( 'wp_head', 'wp_no_robots' );}}} 
     3{{{ 
     4if ( isset( $_GET['replytocom'] ) ) 
     5        add_action( 'wp_head', 'wp_no_robots' ); 
     6}}} 
    57 
    68the 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.