share.php 291 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Displays social sharing buttons
  4. *
  5. * @package vamtam/consulting
  6. */
  7. if ( function_exists( 'sharing_display' ) ) {
  8. sharing_display( '', true );
  9. }
  10. if ( class_exists( 'Jetpack_Likes' ) ) {
  11. $custom_likes = new Jetpack_Likes;
  12. echo $custom_likes->post_likes( '' ); // xss ok
  13. }