Guest User

Untitled

a guest
Sep 24th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. add_action('ava_after_content', 'avia_add_social_toolbar', 10, 2);
  2. function avia_add_social_toolbar($id = "", $context = "")
  3. {
  4. if($context == "post")
  5. avia_social_share_links();
  6. }
  7.  
  8. add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
  9. function avia_add_social_toolbar_template_builder($content = "")
  10. {
  11. $content .= avia_social_share_links(array(), false);
  12. $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>';
  13. return $content;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment