Move featured image below h2

Posted in: Newspaper
Post count: 268

Hi

my post content in wordpress are write like

<h2>content</h2>
<!–more–>
rest of the content

so using single template 2 I see

title
featured image
h2 content
rest of content

How can I move h2 content above featured image?

I try this

<?php
global $more;
$temp = $more;
$more = false;
echo ‘<div class=”giveaway-excerpt”>’ . get_the_content( ” ) . ‘</div>’;
$more = $temp;?>

under

<?php if (!empty($td_mod_single->td_post_theme_settings[‘td_subtitle’])) { ?>
<p class=”td-post-sub-title”><?php echo $td_mod_single->td_post_theme_settings[‘td_subtitle’];?></p>
<?php } ?>

still in single template 2 file, and seems to work

but the content of h2 also remains below featured image…

how to solve?

Thanks!

Post count: 22421

Hello,
Every post template has 2 files corresponding to it.
As you can see in the loop file, the content and featured image are separated from one another: https://www.screencast.com/t/YC1HyJRRBaC
Unfortuantely we have not tested this so I cannot provide a quick solution to get content to show up above the featured image. Sorry.
Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.