hartwm Posted February 5, 2010 Share Posted February 5, 2010 Ok so i chopped up some basic wordpress loops to add a recent post with resized thumbnails, so it works just putting it in sidebar.php but i am trying to register it as a widget...this is what i have, but my php is breaking...can someone please thelp function recent_thumb() { echo "<ul><?php query_posts('showposts=5'); ?> <?php while (have_posts()) : the_post(); ?><?php $Image = get_post_meta($post->ID, 'Image', $single = true); ?> <li class="thumbnails"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <img class="preview" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $Image; ?>&h=80&w=100&zc=1" alt=""/> <span class="title"> <?php the_title(); ?></span></a> <?php endwhile; ?></li></ul>" ; } function init_esea(){ register_sidebar_widget("Recent Posts Thumb", "recent_thumb"); } add_action("plugins_loaded", "init_esea"); ?> Link to comment https://forums.phpfreaks.com/topic/190994-need-help-with-widget/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.