Hard Coding Addthis on the end of News Addon...
Permalink
I want to add an Addthis button to the end of all my news posts, so that when any of the icons is clicked, Facebook for example. It will share the URL of the news page and the title and description of that specific post.
The URL is going through properly but not the description or title... Can anyone help? Thanks
Here is my code:
The URL is going through properly but not the description or title... Can anyone help? Thanks
Here is my code:
<div class="newsflashcontain1"> <div class="title1"> <h3><?php echo $title; ?><a href="<?php echo $url;?>"></a></h3> </div> <div class="time1"> <?php echo $date; ?> </div> <div class="description1"> <?php echo $content; ?></div> <div class="addthis_toolbox addthis_default_style" addthis:url="My page URL goes here" addthis:title =<?php echo $title;?> addthis:description = <?php echo $content; ?>> <a class="addthis_button_preferred_1"></a> <a class="addthis_button_preferred_2"></a> <a class="addthis_button_preferred_3"></a> <a class="addthis_button_preferred_4"></a> </div> <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=xa-4cf841f3634a14d7"></script> </div>