• When I add a new article to my blog I add a main image to every post, of course the image also will display when viewing a single post.

    What i want is to show the attached image only on the main page post and not on a single post.

    Please tell me the way.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Quick fix: Amend single.php so that the post content has a specific class – eg:

    <div id="single_post"><?php the_content();?></div>

    in place of

    <?php the_content();?>

    Next edit your theme’s stylesheet and add the following:

    #single_post img {display:none;}

    This will remove all images from your single post display.

    This will remove all images from your single post display.

    Is it possible to only exclude images from certain post but not ALL posts? Thank you

    Best Documentary Online

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show Attached Image Only in Frontpage Post’ is closed to new replies.