You appear to be a bot. Output may be restricted
Description
Add SVG definitions to the footer.
Usage
twentyseventeen_include_svg_icons();
Parameters
Returns
void
Source
File name: twentyseventeen/inc/icon-functions.php
Lines:
1 to 9 of 9
function twentyseventeen_include_svg_icons() { // Define SVG sprite file. $svg_icons = get_parent_theme_file_path( '/assets/images/svg-icons.svg' ); // If it exists, include it. if ( file_exists( $svg_icons ) ) { require_once $svg_icons; } }