Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/themes/sinatra/inc/compatibility/socialsnap/ |
Upload File : |
<?php /** * Sinatra Social Snap compatibility functions. * * @package Sinatra * @author Sinatra Team <hello@sinatrawp.com> * @since 1.1.0 */ if ( ! function_exists( 'sinatra_entry_meta_shares' ) ) : /** * Add share count information to entry meta. * * @since 1.1.0 */ function sinatra_entry_meta_shares() { $share_count = socialsnap_get_total_share_count(); // Icon. $icon = sinatra()->icons->get_meta_icon( 'share', sinatra()->icons->get_svg( 'share-2', array( 'aria-hidden' => 'true' ) ) ); $output = sprintf( '<span class="share-count">%3$s%1$s %2$s</span>', socialsnap_format_number( $share_count ), esc_html( _n( 'Share', 'Shares', $share_count, 'sinatra' ) ), $icon ); echo wp_kses( apply_filters( 'sinatra_entry_share_count', $output ), sinatra_get_allowed_html_tags() ); } endif;