Thank you for the quick response.
Sorry, I missed the .com / .org difference, so I will give more detailed information about my problem.
I can't provide a link from the site itself because it's localhosted, and the theme I'm currently building it from scratch so no link for that either :\
The problem is simple to explain though: I'm using the thumbnail wordpress system, and upload different thumbnails for each article. What happens is that they all display the same thumbnail.
Check here for visual aid: http://imageshack.us/photo/my-images/684/articleproblem.png/
The code I'm using is the following:
functions.php
add_theme_support('nav-menus');
if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 127, 85, true); // Normal post thumbnails
add_image_size('guia', 389, 521, true); // Permalink thumbnail size
}
the article module in index.php
<?php
$post_id = 73;
$queried_post = get_post($post_id);
if ( has_post_thumbnail( $post_id ) ) {
the_post_thumbnail();
}
?>
<p><?php echo $queried_post->post_content; ?></p>
<?php echo $queried_post->post_title; ?>
(I'm using this last code to fetch a specific article)
Thank you so much for your help!
[Please post code snippets between backticks or use the code button.]