The sociable WordPress plugin indicates that you can use the shortcode to insert the sociable links manually. Unfortunately, it doesn’t actually register the shortcode. Here are a few lines of code that you can put into your theme’s functions.php file to resolve this issue.
You appear to be a bot. Output may be restricted
function rf0311c_oik_loaded() { bw_add_shortcode( "sociable", "sociable_shortcode", oik_path( "includes/sociable_output.php", "sociable" ) ); } add_action( "oik_loaded", "rf0311c_oik_loaded" );
Notes
- This code uses oik APIs.
- If sociable is not installed or activated then the shortcode will fail gracefully.
- If you’re not bothered about it failing then you could simply try coding
You appear to be a bot. Output may be restricted
add_shortcode( "sociable", "sociable_shortcode" );