Skip to content

Instantly share code, notes, and snippets.

@runezero
Last active May 25, 2022 18:46
Show Gist options
  • Select an option

  • Save runezero/dd6c5bc1ff9d40237e0797f1d796b26d to your computer and use it in GitHub Desktop.

Select an option

Save runezero/dd6c5bc1ff9d40237e0797f1d796b26d to your computer and use it in GitHub Desktop.
[Social icons shortcode] Display the social icons list with a shortcode #enfold
add_shortcode('dsm-social-icons', 'dsm_social_icons_shortcode');
function dsm_social_icons_shortcode() {
$social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
$social = avia_social_media_icons($social_args, false);
return $social;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment