Skip to content

Instantly share code, notes, and snippets.

@derekshirk
Last active August 29, 2015 14:17
Show Gist options
  • Save derekshirk/d190e68065274ec09a4a to your computer and use it in GitHub Desktop.
Save derekshirk/d190e68065274ec09a4a to your computer and use it in GitHub Desktop.
WordPress-Inline-SVG-function
<?php
function grav_get_svg($svg){
$path = get_stylesheet_directory­().'/library/images­/svgs/'.$svg;
if(file_exists($path)){
return file_get_contents($path);­
} return '';
}
@derekshirk
Copy link
Author

courtesy of @BrianFerdinand at Gravitate

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment