Using SVG Code in WordPress which can also support animations.

Using SVG Code in WordPress which can also support animations.

Please add following code in active theme functions.php

/* svg code render */
function get_svg_inline($path, $style = '') {
   if ( stripos( $path, '://' ) !== FALSE ) {
       $path = str_replace( get_bloginfo('url'), ABSPATH, $path );
       $path = str_replace( '//', '/', $path );
   }
  
   $svg = file_get_contents($path);
  
   if ( $style ) {
       $svg = str_replace( '

and you can use it like this anywhere on template anywhere

screen114

Leave a Reply

Your email address will not be published. Required fields are marked *