Skip to content

Instantly share code, notes, and snippets.

View dannyb195's full-sized avatar

dannyb195 dannyb195

View GitHub Profile
@dannyb195
dannyb195 / gist:3f31bb533954a0c77cad
Created July 13, 2015 17:40
excerpt with image is the image is the first thing in the post
/**
* [the_custom_excerpt description]
* @param [type] $post_content [description]
* @return [type] [description]
*/
function get_the_custom_excerpt( $post_content ) {
$caption_img = '';
$excerpt = '';
@dannyb195
dannyb195 / gist:2c74017c52ef7d625c35
Created May 28, 2015 23:22
Inserting content after WP in-content paragraph (not really tested)
$content = get_post( 1558 );
$content = $content->post_content;
$content_array = explode( "\n", $content );
echo 'before<pre>';
print_r($content_array);
echo '</pre>';
foreach ( $content_array as $k => $v ) {