How split ‘wp_block_cover’ from ‘the_content’ ?
-
Hi there, quick question.
I need to split the wp_block_cover image from the main content. Anyone has a solution for this?This is what I have now:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();?> <?php the_content(); ?> <?php endwhile; endif?>
But basically, it would need to go a bit into this direction:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();?> <?php wp_block_cover(); ?> <?php remaining_content(); ?> <?php endwhile; endif?>
Thank you guys and take care.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How split ‘wp_block_cover’ from ‘the_content’ ?’ is closed to new replies.