I am trying to add more sharing button to my wordpress blog. here is what it was in origin:
<div class="sharing">
<div class="sharing-facebook">
<a data-shareto="<?php _e('Facebook', 'jeg_textdomain') ?>" rel="nofollow" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=<?php echo wp_get_shortlink() ?>"><i class="fa fa-facebook"></i></a>
</div>
<div class="sharing-twitter">
<a data-shareto="<?php _e('Twitter', 'jeg_textdomain') ?>" rel="nofollow" target="_blank" href="https://twitter.com/home?status=<?php echo urlencode( get_the_title() ); ?>%20-%20<?php echo wp_get_shortlink() ?>"><i class="fa fa-twitter"></i></a>
</div>
<div class="sharing-pinterest">
<a data-shareto="<?php _e('Pinterest', 'jeg_textdomain') ?>" rel="nofollow" target="_blank" href="#" data-href="https://pinterest.com/pin/create/button/?url=<?php echo wp_get_shortlink() ?>&media=<?php echo esc_url( $featured_img ); ?>&description=<?php echo urlencode( get_the_title() ); ?>"><i class="fa fa-pinterest"></i></a>
</div>
<div class="sharing-linkedin">
<a data-shareto="<?php _e('Linkedin', 'jeg_textdomain') ?>" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=<?php echo wp_get_shortlink() ?>&title=<?php echo urlencode( get_the_title() ) ?>&summary=<?php echo urlencode( wp_strip_all_tags( get_the_excerpt() )) ?>&source=<?php echo urlencode( get_bloginfo( 'name' ) ) ?>"><i class="fa fa-linkedin"></i></a>
</div>
</div>
Could you please tell me what should I do to add the sharing option on Reddit and Tumblr?
Thank you very much for helping me.
btw, I am using theme "Falive" but they don't offer the support option to optimize the appearance. I tried to duplicate code lines of other classes but nothing worked.