Skip to content

Instantly share code, notes, and snippets.

@gyrus
Created July 21, 2012 20:54
Show Gist options
  • Save gyrus/3157158 to your computer and use it in GitHub Desktop.
Save gyrus/3157158 to your computer and use it in GitHub Desktop.
Output WordPress content without first paragraph
<?php
/**
* Output WordPress content without first paragraph
*
* @uses get_the_content()
*/
function pilau_the_content_without_first_paragraph() {
$content = trim( apply_filters( 'the_content', get_the_content() ) );
$content = preg_replace( '#<[a-z]+>[^<]+</[a-z]+>#', '', $content, 1 );
echo $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment