Skip to content

Instantly share code, notes, and snippets.

@gyrus
Created July 21, 2012 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gyrus/3157161 to your computer and use it in GitHub Desktop.
Save gyrus/3157161 to your computer and use it in GitHub Desktop.
Output first paragraph of WordPress content
<?php
/**
* Output first paragraph of WordPress content
*
* @uses get_the_content()
*/
function pilau_the_content_first_paragraph() {
$content = trim( apply_filters( 'the_content', get_the_content() ) );
preg_match( '#<[a-z]+>[^<]+</[a-z]+>#', $content, $matches );
echo $matches[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment