Example #1
0
/**
 * Display an SVG.
 *
 * @param  array  $args  Parameters needed to display an SVG.
 */
function _s_do_svg($args = array())
{
    echo _s_get_svg($args);
}
Example #2
0
/**
 * Echo SVG markup.
 *
 * @param  string   $icon_name   Use the icon name, such as "facebook-square"
 */
function _s_do_svg($icon_name)
{
    echo _s_get_svg($icon_name);
}