Jump to content

Recommended Posts

I'm trying to have alter a featured posts plugin on Wordpress. I'd like to have the thumbnail appear with the title appear when the user rolls over the image.

 

Here's the code that needs to be modified:

 

function get_featureimage($post_id) {

global $wpdb, $post_meta_cache;

$result = $wpdb->get_results("SELECT meta_value FROM $wpdb->postmeta WHERE post_id = '$post_id' AND meta_key = 'featurepic' ");

 

return '<a href="'.get_permalink($post_id).'"><img

title=".get_featuretitle($post_id)"

class="featureimage" src="'.get_option("siteurl").'/'.$result[0]->meta_value.'" alt="Feature"/></a>';

}

 

 

Any help would be appreciated!

Try setting the "alt" attribute as well as title.  You might also want to check out overlib for more sophisticated rollover popups.

 

Hmm, do you want an image appearing in the rollover popup?  Or just text?

 

I just want text, being the title of the post, to appear in the rollover popup.

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.