Advertisement
srikat

Untitled

Aug 28th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. //* Display AddToAny's universal button and individual icons
  2. add_action( 'genesis_entry_content', 'sharing_icons' );
  3. function sharing_icons() {
  4.  
  5.     echo '<span class="universal-btn">';
  6.     if ( function_exists( 'ADDTOANY_SHARE_SAVE_BUTTON' ) ) { ADDTOANY_SHARE_SAVE_BUTTON(); }
  7.     echo '</span>';
  8.  
  9.     echo '<div class="a2a_kit a2a_kit_size_32 addtoany_list">';
  10.         if ( function_exists( 'ADDTOANY_SHARE_SAVE_ICONS' ) ) { ADDTOANY_SHARE_SAVE_ICONS(); }
  11.     echo '</div>';
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement