function create_Meta_desc() {
global $post;
if (!is_single()) { return; }
$Meta = strip_Tags($post->post_content);
$Meta = strip_shortcodes($post->post_content);
$Meta = str_replace(array("",""," "),' ',$Meta);
$Meta = substr($Meta,125);
echo "<Meta name='description' content='$Meta' />";
}
add_action('wp_head','create_Meta_desc'); 总结
以上是内存溢出为你收集整理的WordPress自动从_content里创建meta描述全部内容,希望文章能够帮你解决WordPress自动从_content里创建meta描述所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)