Jump to content

Need help with widget


hartwm

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.