This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* [the_custom_excerpt description] | |
* @param [type] $post_content [description] | |
* @return [type] [description] | |
*/ | |
function get_the_custom_excerpt( $post_content ) { | |
$caption_img = ''; | |
$excerpt = ''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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 ) { |