欢迎访问服务器技术网-www.fuwuqijishu.com

无插件自动给WordPress文章添加description头部标签

网站建设 fuwuqijishu 2年前 (2022-09-04) 57次浏览 0个评论 扫描二维码

虽然我们都知道”All in One SEO Pack”插件是可以自动且自定义设置文章的关键字(keyword)、描述(description)的,但是有些时候能精简的就尽量的精简。这里看到一个办法可以快速且自动的给每篇文章设置自动描述。

function wp_auto_desc() {
global $post;
if (!is_single()) { return; }
$meta = strip_tags($post->post_content);
$meta = strip_shortcodes($post->post_content);
$meta = str_replace(array(“\n”, “\r”, “\t”), ‘ ‘, $meta);
$meta = substr($meta, 0, 300);//数字300可以自己调整
echo “<meta name=’description’ content=’$meta’ />”;
}
add_action(‘wp_head’, ‘wp_auto_desc’);

我们可以将脚本添加到当前主题的Functions.php文件中,其中默认是300字符长度,我们可以根据需要调整长度。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2318.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900