Advertisement
Guest User

wpfp_link_html by itailulu

a guest
Mar 6th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function wpfp_link_html($post_id, $opt, $action) { // modified by itailulu@gmail.com
  2. $link = "<a class='wpfp-link' href='?wpfpaction=".$action."&amp;postid=". $post_id . "' title='". $opt ."' rel='nofollow'>". $opt ;
  3. if ($action == "remove")
  4. $link .= wpfp_before_link_img();
  5. else
  6. $link .= wpfp_before_link_img_grey();
  7. $link .= wpfp_loading_img();
  8. $link .= "</a>";
  9. $link = apply_filters( 'wpfp_link_html', $link );
  10. return $link;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement