dollypower
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Post Thumbnail & Twenty Ten themeI argee with Rich, I think although it is a nice example of what WP can do. I think it’s a odd to have used the thumbnail to implement it. I too would have thought most people would use the “thumbnail” for a smaller image.
Also, this snippet might be helpful for others, as it will pull in the thumbnail sized thumbnail. If that makes sense!
<?php the_post_thumbnail('thumbnail'); ?>Forum: Themes and Templates
In reply to: get_pages how to disable grandchildrenOops, the sort order should be there too
$children = get_pages('child_of='.$post->ID.'&sort_order=desc&parent='.$post->ID);Forum: Themes and Templates
In reply to: get_pages how to disable grandchildrenHi there,
Thanks for sharing! Something along the same lines worked for me too. Am sharing it here, in case it is handy for others:
// Get the page's children (but not the grandchildren) $children = get_pages('child_of='.$post->ID.'&parent='.$post->ID);Thanks x x
Forum: Fixing WordPress
In reply to: echo the_post_thumbnail url@tenaciousjk Thanks, this worked perfectly for me. x
Forum: Plugins
In reply to: [Plugin: Events] Lost ability to add/manage events@gyrus, thanks for that link. It did the trick and it now works for me.
Thanks again for sharing 🙂Forum: Plugins
In reply to: [Plugin: Events] Lost ability to add/manage eventsHi there, If it helps I had the same problem and I downgraded also. My data was preserved and it continued to work. Hope that helps. 🙂
Forum: Themes and Templates
In reply to: Page thumbnailsGot it! Sharing it, as others may find it useful.
For the latest blog post:
<?php query_posts('showposts=1'); ?> <?php while (have_posts()) : the_post(); ?> <?php the_post_thumbnail(); ?> <?php endwhile; ?>For a thumbnail from a particular page (in this case id =7 ):
<?php query_posts('page_id=7'); ?> <?php while (have_posts()) : the_post(); ?> <?php the_post_thumbnail(); ?> <?php endwhile; ?>Forum: Themes and Templates
In reply to: Page thumbnails*last bump*
Will try to do a bit more investigating. If I figure it out, I’ll be sure to share the details on here. 🙂
Forum: Plugins
In reply to: SimplePie template file is not readableYou should have a folder of templates here:
/wp-content/plugins/simplepie-plugin-for-wordpress/templatesIf so, try adding something like this to the array:
‘template’ => ‘sideblog’Here’s a chunk of demo code to try out:
<?php
echo SimplePieWP(array(
‘http://feeds.feedburner.com/simplepie’,
‘http://laughingmeme.org/category/magpie/feed/’
), array(
‘items’ => 5,
‘cache_duration’ => 1800,
‘date_format’ => ‘j M Y, g:i a’,
‘template’ => ‘sideblog’
));
?>Forum: Installing WordPress
In reply to: upgrade to 2.8.2Have you checked if you have the right permissions set on the directory?