यो प्लगिन वर्डप्रेसका ३ प्रमुख नवीनतम रिलीजहरूसँग परीक्षण गरिएको छैन। यो अब सम्भवतः व्यवस्थित वा समर्थन नभएको हुन सक्छ र वर्डप्रेसका नयाँ संस्करणहरूमा प्रयोग गर्दा अनुकूलता सम्बन्धी समस्या हुन सक्छ।

Post Share Count

विवरण

Show twitter and facebook share count. Send your feature request.

स्थापना

  1. Upload post-share-count.zip and extract to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Place <?php the_post_share_count(); ?> in your templates

प्रश्नोत्तर

How to add html wrapper or some css class to counter and/or display counter as link?

Use array as argument with keys before_ and after_ prefix and social link name, here is example how to add @via parameter twitter sharing link:

<?php
$share_args = array(
    'before_twitter' => '<span class="share-link"><a href="https://twitter.com/intent/tweet?text=' . urlencode(get_the_title()) . '&url=' . urlencode(get_permalink()) . '&via=' . urlencode('your-twitter-name') . '" rel="nofollow" target="_blank"><span class="genericon genericon-twitter"></span> ',
    'after_twitter' => '</a></span>',
);
the_post_share_count( $share_args );
?>

Also you can add changes to functions.php:
function your_theme_post_share_count_services( $services ) {
$services[‘twitter’][‘before’] = ‘ ‘;
return $services;
}
add_filter(‘post_share_count_services’, ‘your_theme_post_share_count_services’);

How to limit list of social networks? (or “I want only twitter counter”)

Add show_only parameter:
array( ‘twitter’, ‘facebook’ ));
the_post_share_count($args);
?>

Also you can do it in functions.php:
function your_theme_post_share_count_services( $services ) {
unset( $services[‘facebook’] );
unset( $services[‘pinterest’] );
unset( $services[‘googleplus’] );
unset( $services[‘linkedin’] );
return $services;
}
add_filter(‘post_share_count_services’, ‘your_theme_post_share_count_services’);

समीक्षाहरू

यस प्लगिनको लागि कुनै समीक्षाहरू छैनन्।

योगदानकर्ता र डेभलपरहरू

“Post Share Count” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले यो प्लगिनमा योगदान गरेका छन्।

योगदानकर्ताहरू

चेन्जलग

0.5

  • Fix pinterest counter

0.4

  • Added LinkedIn counter
  • Added genericon css classes for icon font support
  • Added parameters time and max_sync, see get_the_post_share_count() function for details
  • Change donate link to PayPal

0.2

  • Added facebook counter
  • Changed the_post_share_count arguments, now one arg as array, see faq.