Skip to content

Instantly share code, notes, and snippets.

@maugelves
maugelves / get-fisrt-paragraph.php
Last active October 28, 2016 19:15 — forked from banago/get-fisrt-paragraph.php
Get first paragraph from a WordPress post.
<?php
/**
* Get first paragraph from a WordPress post. Use inside the Loop.
*
* @param $class string optional class name to include in the paragraph
* @return string
*/
function get_first_paragraph( $class = '' ){
global $post;