在使用发出请求时添加noindexcomments_popup
查询时,请尝试以下主题函数。php-
add_action(\'wp_head\', \'wpse_wp_head\');
function wpse_wp_head(){
if( isset($_REQUEST[\'comments_popup\']) && \'\' != $_REQUEST[\'comments_popup\'] ){
echo "<meta name=\'robots\' content=\'noindex,follow\' />\\n";
}
}