get($themeslug.'_font') == "" ) {
$font = apply_filters( 'business_default_font', 'Arial' );
}
else {
$font = $options->get($themeslug.'_font');
} ?>
', " >
>
ID, 'seo_title' , true);
$pagedescription = get_post_meta($post->ID, 'seo_description' , true);
$keywords = get_post_meta($post->ID, 'seo_keywords' , true); ?>
get($themeslug.'_home_title') != '' AND is_front_page()) { ?>
'/> get($themeslug.'_home_description') != '' AND is_front_page()) { ?>
' /> get($themeslug.'_home_keywords') != '' AND is_front_page()) { ?>
' /> ";
}
if ($pagedescription != '' AND !is_front_page()) {
echo "";
}
if ($keywords != '' AND !is_front_page()) {
echo "";
}
}
/**
* Establishes the theme title tags.
*
* @since 3.0
*/
function business_title_tag() {
echo '';
wp_title( ' - ' );
echo '';
}
/**
* Sets the header link rel attributes
*
* @since 3.0
*/
function business_link_rel() {
global $themeslug, $options; //Call global variables
$favicon = $options->get($themeslug.'_favicon'); //Calls the favicon URL from the theme options
?>
get($themeslug.'_favicon_toggle') == true ): ?>
get($themeslug.'_apple_touch_toggle') == true && is_array( $options->get($themeslug.'_apple_touch') ) ): ?>
get($themeslug.'_apple_touch'); ?>
get($themeslug.'_logo'); //Calls the logo URL from the theme options
if( $url = $options->get($themeslug.'_logo_url_toggle' ) == 1 )
{
$url = $options->get($themeslug.'_logo_url') != '' ? $options->get($themeslug.'_logo_url') : get_home_url();
}
else {
$url = get_home_url();
}
if ($options->get($themeslug.'_custom_logo') == '1') { ?>
get($themeslug.'_facebook');
$hidefacebook = $options->get($themeslug.'_hide_facebook_icon');
$twitter = $options->get($themeslug.'_twitter');;
$hidetwitter = $options->get($themeslug.'_hide_twitter_icon');;
$gplus = $options->get($themeslug.'_gplus');
$hidegplus = $options->get($themeslug.'_hide_gplus_icon');
$flickr = $options->get($themeslug.'_flickr');
$hideflickr = $options->get($themeslug.'_hide_flickr');
$pinterest = $options->get($themeslug.'_pinterest');
$hidepinterest = $options->get($themeslug.'_hide_pinterest');
$linkedin = $options->get($themeslug.'_linkedin');
$hidelinkedin = $options->get($themeslug.'_hide_linkedin');
$youtube = $options->get($themeslug.'_youtube');
$hideyoutube = $options->get($themeslug.'_hide_youtube');
$googlemaps = $options->get($themeslug.'_googlemaps');
$hidegooglemaps = $options->get($themeslug.'_hide_googlemaps');
$email = $options->get($themeslug.'_email');
$hideemail = $options->get($themeslug.'_hide_email');
$rss = $options->get($themeslug.'_rsslink');
$hiderss = $options->get($themeslug.'_hide_rss_icon');
$folder = 'default';
?>