Created
January 25, 2016 21:29
-
-
Save spigotdesign/4e493d5678daeaa8d266 to your computer and use it in GitHub Desktop.
WordPress get SVG file contents
This file contains 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 echo file_get_contents( get_stylesheet_directory_uri() . '/img/icons/your-logo-file.svg' ); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also, try using
get_template_directory()
instead ofget_template_directory_uri()
Use something like:
<?php echo file_get_contents(get_template_directory().'/theme/img/chevron-right-solid.svg'); ?>
Sometimes using
get_template_directory_uri()
will throw an SSL errorThen, you can target the SVG and style how you wish.
For example:
CSS might be:
.btn svg { line-height: 1.2; max-height: 1rem;}