Skip to content

Instantly share code, notes, and snippets.

@kareemkibue
Last active May 11, 2016 15:18
Show Gist options
  • Save kareemkibue/c2b0ed64a17c6a2f199cdd900beedece to your computer and use it in GitHub Desktop.
Save kareemkibue/c2b0ed64a17c6a2f199cdd900beedece to your computer and use it in GitHub Desktop.
Rendering SVG icons in PHP/WordPress
<?php
function render_icon($icon_id, $class=null){
?>
<svg class="ico <?php echo $class; ?>">
<use xlink:href="<?php echo get_template_directory_uri() .'/images/icons.svg#'. $icon_id; ?>">
</svg>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment