Advertisement
SBlasnik

Social Media Buttons on Post

Jun 20th, 2012
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. /* Add the main siteadmin menu item */
  2. $wp_admin_bar->add_menu( array( 'id' => 'theme_options', 'title' => THEME_NAME, 'href' => admin_url('themes.php')."?page=".THEME_FILE ) );
  3. $wp_admin_bar->add_menu( array( 'parent' => 'theme_options', 'title' => __( 'Layout Options', 'magazine-basic' ), 'href' => admin_url('themes.php')."?page=".THEME_FILE ) );
  4. }
  5. add_action( 'admin_bar_menu', 'add_menu_admin_bar', 70 );
  6.  
  7. // add social media
  8. // usage [social-media]
  9. add_shortcode('social-media', 'addSocialMedia');
  10. function addSocialMedia() {
  11. return '
  12. <a href="http://fashiondevelopmentgroup.com"><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" /></a>
  13. <h3 class="follow-me">FOLLOW ME:</h3>
  14. <div class="social-media-icons"><a href="https://www.facebook.com/FashionDevelopmentGroup?v=wall"><img src="http://fashiondevelopmentgroup.com/wp-content/uploads/2012/06/facebook_3.png" alt="" width="32" height="32" border="0" /></a><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><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><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></div>';
  15. }
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement