Advertisement
sbruner

FDG Functionality Plugin

Jun 20th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.61 KB | None | 0 0
  1. <?php
  2. /**
  3. Plugin Name: FDG Functionality
  4. Plugin URI: http://fashiondevelopmentgroup.com
  5. Description: Custom code that needs to work on both mobile and non-mobile versions
  6. Author: FDG
  7. Version: 1.0
  8. Author URI: http://fashiondevelopmentgroup.com/
  9. **/
  10.  
  11.  
  12. // add social media
  13. // usage [social-media]
  14. add_shortcode('social-media', 'addSocialMedia');
  15. function addSocialMedia() {
  16.     return '
  17.        <a href="http://fashiondevelopmentgroup.com">
  18.          <img class="size-full wp-image-3033" title="SB-Signature-Red" src="http://fashiondevelopmentgroup.com/wp-content/uploads/2011/09/SB-Signature-Red2.gif" alt="Sheryl Blasnik" width="47" height="60" />
  19.        </a>
  20.        
  21.        <h3 class="follow-me">FOLLOW ME:</h3>
  22.          <div class="social-media-icons"><a href="https://www.facebook.com/FashionDevelopmentGroup?v=wall">
  23.            <img src="http://fashiondevelopmentgroup.com/wp-content/uploads/2012/06/facebook_3.png" alt="" width="32" height="32" border="0" />            <a href="https://twitter.com/#!/FashionistaNYC"><img src="http://fashiondevelopmentgroup.com/wp-content/uploads/2012/06/circle-twitter_3.png" alt="" width="32" height="32" border="0" /></a>
  24.            <a href="https://pinterest.com/fashionistany/"><img src="http://fashiondevelopmentgroup.com/wp-content/uploads/2012/06/circle-pinterest_3.png" alt="" width="32" height="32" border="0" /></a>
  25.            <a class="fix" href="http://feeds.feedburner.com/fashiondevelopmentgroup/HuDH"><img src="http://fashiondevelopmentgroup.com/wp-content/uploads/2012/06/circle-rss_3.png" alt="" width="32" height="32" border="0" /></a>
  26.          </div>';
  27. }
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement