can’t say from what you have posted what your problem is – not enough data. How many posts do you have entered? How many posts is WP set to display on your posts page? are you using a query_posts statement on your posts page – if so what is the contents of the query_posts statement?
to get rid of the black border, add to stylesheet
#content img { border: none; }
Thread Starter
stag
(@stag)
And just to add, I have also posted a vid and exactly the same problem is occuring…
Thread Starter
stag
(@stag)
Ok, i havent made any proper posts, just some test stuff. The first 3 posts have images, but these are custom fields (i have the blog setup so I can have an image before the title post)
This post: 27.04.09 / Yet another new post – Please work images – I have inserted 1 image but this does not show. However, clicking the post title, takes u to the individual page which then shows the image.
No idea about WP display and posts page, whats this? Again, query_posts statement… urm…
If your home page is set up to show images from custom fields and your single page is displaying images that are in the posts not from custom fields, that explains why you are not seeing the image on the home page.
On your home page I see one image twice. Could you have entered the wrong URL in one custom field, or left one off altogether?
Thread Starter
stag
(@stag)
Oh DAMN!!!! Ive just deleted my custom field by complete accident (by deleting the old posts) – This is what allows me to post the image first. Oh myyyyyy
Any idea how to rectify this, as i cant assign a thing in the custom field. Shoot, ive balls this right up 🙁
Just reenter the custom field on the replacement post. Is that a problem for some reason?
Thread Starter
stag
(@stag)
Well u can tell i am a noob is this. Thing is i cannot remember the name of the custom post. How do I find this out?
your template must be calling in the custom field if it is displaying the image – so look in the template for the code that calls it in – the name will be in there. Most likely index.php in your theme folder.
Thread Starter
stag
(@stag)
any idea where abouts this would be in the code?
/wp-content/themes/{themename}/index.php
if you can’t find it, paste your index.php code into a pastebin at
http://wordpress.pastebin.ca/ & link to it here
Thread Starter
stag
(@stag)
Well this is what my theme index.php code is:
<?php get_header(); ?>
<div id=”rgtcol”>
<div class=”content”>
<?php while (have_posts()) : the_post(); ?>
<div class=”post”>
<img src=”<?php echo get_post_meta($post->ID, “Thumbnail”, true); ?>” alt=”<?php the_title(); ?> <?php _e(‘thumbnail’); ?>” width=”730″ />
<div style=”margin-bottom:5px;”></div>
<h3 id=”post-<?php the_ID(); ?>”><?php the_time(‘j.m.y’); ?> / “><?php the_title(); ?></h3>
<?php the_excerpt(__(‘Read more…‘)); ?>
<div style=”margin-top:15px;”></div>
<div style=”float:left; font-size:11px; width:500px;”>POSTED <?php the_time(‘j.m.y’); ?> <span class=”comments-link”><?php comments_popup_link(‘Post a comment’, ‘1 Comment’, ‘% Comments’); ?></span> LABELS/ <?php echo get_the_tag_list(‘ ‘,’, ‘,’ ‘);
?>
</div>
<div align=”right” style=”margin-right:10px; font-size:11px;”>
<?php if (function_exists(‘sharethis_button’)) { sharethis_button(); } ?><!–Email Link–>
</div>
<div style=”margin-bottom:10px;”></div>
</div>
<?php endwhile; ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</div>
</body>
</html>
Thread Starter
stag
(@stag)
ok, well that works the custom field. Image wont appear anymore. Just get the Winter Dark thumbnail
Again, any ideas?
I’m sorry, you are going to have to figure some of this out by yourself.
My suggestion is start very simply, add things step by step. Get one thing working then try the next thing. don’t try taking 3 steps at one time.
Thread Starter
stag
(@stag)
Thanks your help anyway – will mess around
Cheers