travbod579
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post thumbnail not displayingFound the problem. I went to the post iteslf in the admin section. I didn’t realise there was a “Featured Image” section in the bottom right where I had to set the image for the thumbnail.
Forum: Fixing WordPress
In reply to: Post thumbnail not displayingI have the following enabled in the Functions.php
// This theme uses post thumbnails add_theme_support( 'post-thumbnails' );I then put this code on my top level page but had no thumbnail nor an integer relating to the post number:
<?php $pages = get_pages(array('child_of' => 1));?> <?php foreach ($pages as $page): ?> <?php echo $page->ID; ?> <?php echo get_the_post_thumbnail($page->ID); ?> <?php endforeach; ?>Is something else wrong as I can’t even get a post ID. I can get an exceprt though using:
<?php the_excerpt(); ?>Cheers
Forum: Fixing WordPress
In reply to: Broken google links after move from blogger to wordpressfound the answer guys. I didnt update the permalinks correctly. Still a long night ahead though 🙁
Forum: Plugins
In reply to: Is there a plugin?here is a good article to address my first point above.
Forum: Fixing WordPress
In reply to: Blogger to WordPressThey are in .html at the moment in blogger. I am still weighing up a switch to Word Press, it does look more professional and has some cool plugins.
Thanks, I will take a look at the link and do some homework.