How to put socail share button in wordpress post under the post excerpt? -


please tell me there plugin put social share button under wordpress post excerpt? please see image understand want.

enter image description here

you can use wordpress plugin called share buttons achieve this. once installed, activated , chosen icons want added. add following page(s) excerpt (just after calling excerpt).

<?php if ( function_exists( 'addtoany_share_save_kit' ) ) { addtoany_share_save_kit(); } ?> 

the code like:

<?php the_excerpt(); ?> <?php if ( function_exists( 'addtoany_share_save_kit' ) ) { addtoany_share_save_kit(); } ?> 

it might different depending on how have done excerpt.


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -