ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` // Create Meta Description from Content // source: http://www.paulund.co.uk/automatically-create-meta-description-from-content function so_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("\n", "\r", "\t"), ' ', $meta); $meta = substr($meta, 0, 125); // number of characters it takes from the content and uses as meta description echo "<meta name='description' content='$meta' />"; } add_action('wp_head', 'so_create_meta_desc'); ```