您可以使用wp_title
筛选以修改HTML文档标题,您可以使用wp_head
钩住自定义HTML元链接的操作。e、 g.:
<?php
function wpse46249_filter_wp_title( $title ) {
// $title contains the default document title
// output by WordPress. Modify it here however
// you want.
$some_custom_title_content = \'CUSTOM TITLE CONTENT HERE\';
// Now append it to the default
$custom_title = $title . $some_custom_title_content;
// Then return the result
return $custom_title;
}
add_filter( \'wp_title\', \'wpse46249_filter_wp_title\' );
function wpse46249_add_meta_link() {
echo \'<meta name="keywords" content="INSERT KEYWORDS HERE" />\';
}
add_action( \'wp_head\', \'wpse46249_add_meta_link\' );
?>
这些回调可以添加到插件中,以防止主题切换。
为了进一步参考,我建议看看流行的SEO插件是如何实现这些扩展的。