';
} elseif ( ! mfn_slider_isset() || isset( $subheader_advanced['slider-show'] ) ) {
// subheader
$subheader_options = mfn_opts_get('subheader');
if (is_home() && ! get_option('page_for_posts') && ! mfn_opts_get('blog-page')) {
$subheader_show = false;
} elseif (is_array($subheader_options) && isset($subheader_options[ 'hide-subheader' ])) {
$subheader_show = false;
} elseif (get_post_meta(mfn_ID(), 'mfn-post-hide-title', true)) {
$subheader_show = false;
} else {
$subheader_show = true;
}
// title
if (is_array($subheader_options) && isset($subheader_options[ 'hide-title' ])) {
$title_show = false;
} else {
$title_show = true;
}
// breadcrumbs
if (is_array($subheader_options) && isset($subheader_options[ 'hide-breadcrumbs' ])) {
$breadcrumbs_show = false;
} else {
$breadcrumbs_show = true;
}
if (is_array($subheader_advanced) && isset($subheader_advanced[ 'breadcrumbs-link' ])) {
$breadcrumbs_link = 'has-link';
} else {
$breadcrumbs_link = 'no-link';
}
// output
if ($subheader_show) {
echo '';
}
}
}
}
}
?>