Last active
September 6, 2020 06:34
-
-
Save nickcernis/7f28330b4ed2f2e22a2c to your computer and use it in GitHub Desktop.
Genesis Simple Share Shortcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Adds a [social-icons] shortcode to output Genesis Simple Share icons in posts | |
// https://wordpress.org/plugins/genesis-simple-share/ | |
// Add the code below to your active theme's functions.php file, | |
// or use in a site-specific plugin. | |
// The shortcode takes no attributes; change your icon settings via Genesis → Simple Share. | |
add_shortcode( 'social-icons', 'gss_shortcode' ); | |
function gss_shortcode() { | |
global $genesis_simple_share; | |
$icons = ''; | |
if ( function_exists( 'genesis_share_get_icon_output' ) ) { | |
$location = uniqid( 'gss-shortcode-' ); | |
$icons = genesis_share_get_icon_output( $location, $genesis_simple_share->icons ); | |
} | |
return $icons; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@KramazGIT, it seems that it will only work if you are using static home page