Split up images and text
Tento článek (nebo jeho část) je převzat z externího zdroje. Je tedy slušností jej uvést včetně případného autora.
Pulls out all your images in your post and puts it in a separate div.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<div class="content-text"> <h2><?php the_title(); ?></h2> <?php ob_start(); the_content('Read the full post',true); $postOutput = preg_replace('/<img[^>]+./','', ob_get_contents()); ob_end_clean(); echo $postOutput; ?> </div> <div class="content-img"> <?php preg_match_all("/(<img[^>]*>)/",get_the_content(),$matches,PREG_PATTERN_ORDER); for( $i=0; isset($matches[1]) && $i < count($matches[1]); $i++ ) { echo $beforeEachImage . $matches[1][$i] . $afterEachImage; } ?> </div> |
Napsat komentář