Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 852611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:37:33+00:00 2026-05-15T07:37:33+00:00

I am writing a wordpress theme, and have run into a fairly basic problem.

  • 0

I am writing a wordpress theme, and have run into a fairly basic problem. By default, when you inset an image into the post, it displays that image at the size you specify, on both the homepage and the single post.

I would like to have different sized images, displaying a thumbnail on the homepage, and a full sized image when you click through to the post. I am using wordpress 2.9’s new thumbnail feature, which has created great thumbnails for the homepage. But now, I am stuck with a nice thumbnail next to a large photo (on the index/home page). On the single page, it is displaying correctly with just the large picture.

Basically, I need to know how to tell wordpress to only display the large post image on the single page, not on the index.

Also: I have used the timthumb script, but I think the answer is far more basic then needing plugins or scripts

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T07:37:34+00:00Added an answer on May 15, 2026 at 7:37 am

    This can be completely, 100% achieved using 2.9’s thumbnail feature in combination with timthumb. To do so, follow these directions:

    in the functions.php file insert:

    add_theme_support( 'post-thumbnails' );
    

    In your index.php file, insert:

    <?php the_post_thumbnail(array( 125,125 )); ?>
    

    And finally, in your single.php, insert:

    <?php
        $thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id(), 'large');
        if (has_post_thumbnail()) {
            echo '<div class="post-tnail"><a href="'.get_permalink().'" title="'.get_the_title().'"><img src="'.get_bloginfo('template_url').'/scripts/timthumb.php?src='.$thumbnail[0].'&amp;w=440&amp;zc=1&amp;q=95" alt="'.get_the_title().'" /></a></div>';
        }
    ?>
    

    Basically, the functions.php add allows you to see the thumbanil feature on the back-end. Add a new thumbnail and it will display in the box. The homepage will automatically render the 125 x 125 thumbnail, and the single page will automatically render a proportional image with a fixed width of 440px. Took me forever to figure out, but this works!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm running Wordpress 3.3.1. I'm writing a child theme that modifies the default twentyeleven
I'm writing a plugin but I have a problem. When Wordpress is displaying posts
Here's my problem: I'm writing a WordPress plugin that helps budding CSS authors see
So, I have a Wordpress theme. In the functions.php file, I'm writing a function
Hi I just got into wordpress theme development and I have seen many developers
Quick question about Wordpress PHP: I am writing a theme and I want to
I am writing a WordPress plugin that uses WP_HTTP for making an API call.
I am writing a wordpress plugin that redirects the user. for some reason, wp_redirect
I am in the process of writing a small WordPress data sync plugin that
I have been writing articles on the wordpress.com blog , now I am looking

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.