Skip to content

Instantly share code, notes, and snippets.

@teemujonkkari
teemujonkkari / jetpack-sharing-shortcode.php
Last active December 27, 2017 11:24
WordPress Jetpack Sharing (Sharedaddy) Shortcode
<?php
// This shortcode will show the buttons you have actived through sharing settings.
// Add this shortcode function to functions.php file in your theme folder
function wpcodex_sharedaddy_shortcode() {
return ( class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'sharedaddy' ) ) ? sharing_display() : '';
}
add_shortcode( 'sharedaddy_buttons', 'wpcodex_sharedaddy_shortcode' );
// Add this shortcode to your theme where ever you want to show the sharing buttons