wp添加关键字和网站描述
wp版本为4.4.2,经过多番修改,终于找到在网站头部添加关键字和描述的方法,不需要安装插件即可实现
修改当前主题目录下的functions.php,在最后加入以下代码,其中数字2应该是代表显示优先级,具体可看wp-includes/default-filters.php
1 2 3 4 5 6 |
//添加描述和关键字 function my_header() { echo '<meta name="keywords" content="xxxx" />'."\n"; echo '<meta name="description" content="xxxx" />'."\n"; } add_action('wp_head','my_header',2); |