Post Sharing PHP Link Codes
-
I have added the code for my post sharing unordered list I am using. I need to know what code to use for the “a href” of the Feedburner link (first list item) and the Email link (last list item). My Feedburner ID is Linklobbycom and for the email link I just want it to open the referrers default email client with a Subject such as “Check out this post” and in the Body of the email I want it to insert the Permalink. Thank you for any help you can give me!
<ul class="my_bookmarks"> <li><a class="feedburner" href="#">Feedburner</a></li> <li><a class="delicious" href="https://del.icio.us/post?url=<?php the_permalink();?>&title=<?php the_title();?>">Delicious</a></li> <li><a class="stumbleupon" href="https://www.stumbleupon.com/submit?url=<?php the_permalink();?>&title=<?php the_title(); ?>">StumbleUpon</a></li> <li><a class="digg" href="https://digg.com/submit?phase=2&url=<?php the_permalink();?>&title=<?php the_title(); ?>">Digg</a></li> <li><a class="twitter" href="https://twitter.com/home?status=Currently%20reading%20<?php the_permalink(); ?>">Twitter</a></li> <li><a class="mixx" href="https://www.mixx.com/submit?page_url=<?php the_permalink();?>&title=<?php the_title(); ?>">Mixx</a></li> <li><a class="technorati" href="https://technorati.com/faves?add=<?php the_permalink();?>">Technorati</a></li> <li><a class="facebook" href="https://www.facebook.com/share.php?u=<?php the_permalink();?>&t=<?php the_title(); ?>">Facebook</a></li> <li><a class="newsvine" href="https://www.newsvine.com/_tools/seed&save?u=<?php the_permalink();?>&h=<?php the_title(); ?>">Newsvine</a></li> <li><a class="reddit" href="https://reddit.com/submit?url=<?php the_permalink();?>&title=<?php the_title(); ?>">Reddit</a></li> <li><a class="google" href="https://www.google.com/bookmarks/mark?op=add&bkmk=<?php the_permalink();?>&title=<?php the_title(); ?>">Google</a></li> <li><a class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=<?php the_permalink(); ?>&title=<?php the_title();?>&source=<?php wp_title();?>">Linkedin</a></li> <li><a class="myspace" href="https://www.myspace.com/Modules/PostTo/Pages/?u=<?php the_permalink();?>&t=<?php the_title(); ?>">MySpace</a></li> <li><a class="email" href="#">Email</a></li> </ul>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Post Sharing PHP Link Codes’ is closed to new replies.