joelkrause
8/20/2019 - 9:13 AM

Add favicon through functions.php

Add favicon through functions.php

function myfavicon() {
    echo '<link rel="Shortcut Icon" type="image/x-icon" href="'.get_template_directory_uri().'/library/images/bard_up_favicon.png" />';
}
add_action('wp_head', 'myfavicon');