wordpress发布文章时自动添加description描述

611 ℃

wordpress在发布文章时候如何自动添加meta name='description'描述,下面web建站小编给大家详细介绍一下具体实现代码!

打开主题下functions.php,新增以下代码:

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);//描述字数
  echo "";
}

add_action('wp_head', 'wp_auto_desc');

php语法对index.php首页进行判断(根据需要显示不同页面)

wordpress如何从指定数据库读取文章静态生成

wordpress做时间列表,比如2024年1月文章列表

wordpress新建页面中页面属性里没有“模板”选项解决方法

wordpress获取当前文章最后一个tags标签(不带链接)

标签: description, wordpress教程, 自动添加描述

上面是“wordpress发布文章时自动添加description描述”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_3525.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

php如何将正数直接转换为负数
帝国cms教程之自定义JS
如何实现dedecms5.7标签tags伪静态
MySQL中存储性别信息的基本操作方法!
AES加密,报CryptoJS is not defined错误解决方法