I was hoping to get some help with a bit of a coding problem that has been driving me crazy. I’d preferably like to write “&” instead of “and” in my wordpress post titles. But writing out ampersands breaks our post share links for twitter, facebook, and google-plus. Facebook is able to actually display the link (it takes the ampersand out of the title, though), but twitter full out fails, and google-plus as well.
This is the code for the share links:
<ul>
<li class="video-twitter"><a target="_blank" href="http://twitter.com/share?text=<?php the_title(); ?>&url=<?php the_permalink(); ?>" title="Share on Twitter">Twitter</a></li>
<li class="video-facebook"><a target="_blank" href="http://www.facebook.com/sharer.php?u=<?php the_permalink();?>&t=<?php the_title(); ?>" title="Share on Facebook">Facebook</a></li>
<li class="video-google"><a target="_blank" href="https://plus.google.com/share?url=<?php the_permalink();?>&t=<?php the_title(); ?>" title="Share on Google+">Google+</a></li>
</ul>
Any help would be greatly appreciated!
I had the same problem today and it’s rather easy to fix. All ampersands and such are served as entities by WordPress, this means if you use get_the_title() or the_title() ampersands are like this: & #038 ;
You can decode this using html_entity_decode() after that you’ll have to make it URL friendly, which can be done using urlencode().
Combine them and you’ll have this:
Or do it the ‘cleaner’ way and create this function in your functions.php theme file:
This way you can call this function in your theme, which can be used for all social networks:
When applied to your example: