File "theme-functions.php"

Full Path: /home/refref/public_html/footnotes/wordfence/framework/theme-functions.php
File size: 463 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

/* Functions specific to the included option settings */

/*-----------------------------------------------------------------------------------*/
/* Add Favicon
/*-----------------------------------------------------------------------------------*/

function st_favicon() {
	if (of_get_option('st_custom_favicon')) {
	echo '<link rel="shortcut icon" href="'. of_get_option('st_custom_favicon') .'"/>'."\n";
	}
}

add_action('wp_head', 'st_favicon');




?>