Hello !
Could we hide the preview image only in a particular single post ?
Uploaded with ImageShack.us
Hello !
Could we hide the preview image only in a particular single post ?
Uploaded with ImageShack.us
Hey,
There are a couple of ways to do this, the first and most obvious is to not add an image to the post.
Assuming you do want to add a featured image for use on other areas of the site, you need to modify this code:
<?php
if($preview_image)
{
echo '<div class="entry-previewimage rounded preloading_background">';
echo $preview_image;
echo '</div>';
}
?>
in single.php, adding WordPress Conditional Tags around the code so it won't show up on specific posts.
James
Ok thanks, i'll try that
You must log in to post.