Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #22876


Ignore:
Timestamp:
12/12/2012 10:02:11 AM (12 years ago)
Author:
joostdevalk
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22876 – Description

    initial v1  
    11in default-filters.php, we add a new action:
    22
    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' );}}}
    55
    66the 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.