Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Tsunamijaan/d3a18a2309e215b1a305f9b1b4720758 to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/d3a18a2309e215b1a305f9b1b4720758 to your computer and use it in GitHub Desktop.
To Automatically Create Meta Description From Content
function create_meta_desc() {
global $post;
if (!is_single()) { return; }
$meta = strip_tags($post->post_content);
$meta = strip_shortcodes($meta);
$meta = str_replace(array("\n", "\r", "\t"), ' ', $meta);
$meta = substr($meta, 0, 125);
echo "<meta name='description' content='$meta' />";
}
add_action('wp_head', 'create_meta_desc');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment