'."\n";
$skt_meta .= '
';
if(sketch_get_option($shortname.'_favicon')){
$skt_favicon = sketch_get_option($shortname.'_favicon','biznez');
$skt_meta .= "\n";
}
echo $skt_meta;
}
add_action('wp_head', 'biznez_head');
function biznez_head_css(){
global $shortname;
if(!is_admin())
{
require_once(get_template_directory().'/inc/biznez-custom-css.php');
}
}
add_action('wp_head', 'biznez_head_css');
//enqueue footer script
function biznez_footer_script() {
global $shortname;
if(!is_admin())
{
require_once(get_template_directory().'/js/orbit-slider-config.php');
require_once(get_template_directory().'/js/jquery-jcarousel-config.php');
}
}
add_action('wp_footer', 'biznez_footer_script');