尽管我建议您避免这种情况,并为此工作使用插件。因为只有专用的插件才能帮助SEO。yoost的“WordPress SEO”是一个很好的SEO插件。
也就是说,下面是在标题中添加元描述和关键字的代码。将此粘贴到主题的函数中。php文件。
function add_meta_tags() {
global $post;
if ( is_single() ) {
$meta = strip_tags( $post->post_content );
$meta = strip_shortcodes( $post->post_content );
$meta = str_replace( array("\\n", "\\r", "\\t"), \' \', $meta );
$meta = substr( $meta, 0, 125 );
$keywords = get_the_category( $post->ID );
$metakeywords = \'\';
foreach ( $keywords as $keyword ) {
$metakeywords .= $keyword->cat_name . ", ";
}
echo \'<meta name="description" content="\' . $meta . \'" />\' . "\\n";
echo \'<meta name="keywords" content="\' . $metakeywords . \'" />\' . "\\n";
}
}
add_action( \'wp_head\', \'add_meta_tags\' , 2 );