<?php foreach(array( ‘rsd_link’,//rel=”EditURI” ‘index_rel_link’,//rel=”index” ‘start_post_rel_link’,//rel=”start” ‘wlwmanifest_link’//rel=”wlwmanifest” ) as $xx) remove_action(‘wp_head’,$xx);//X掉以上 function the_category_filter($thelist){//rel=”category”或rel=”category tag”, 这个最巨量 return preg_replace(‘/rel=”.*?”/’,’rel=”tag”‘,$thelist); } add_filter(‘the_category’,’the_category_filter’); ?>
将以上代码加到functions.php里面去,Wordpress就不会生成烦人无用的rel属性了
发表回复