move featured image above the title and meta

Latest Reply from Alice at 2015-09-14 06:10:38
Is it possible to move the featured image above the title and meta? I do not know exactly which part of the code in theloop.php i have to move.
Hi!

TO move the featured image up you need to put the code:
<?php // Post featured image
if(has_post_thumbnail()) {
if (!is_single()){ ?><a href="<?php the_permalink(); ?>" title="<?php printf( $SMTheme->_( 'permalink' ), the_title_attribute( 'echo=0' ) ); ?>"> <?php }
the_post_thumbnail(
'post-thumbnail',
array("class" => $SMTheme->get( 'layout','imgpos' ) . " featured_image")
);
if (!is_single()){ ?></a><?php }
}

?>

to the 20th line - right after the code:
<div class='one-post'>

Leave a reply

Add codeAdd image