| Server IP : 104.26.4.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/buzzbitesv3/public_html/wp-content/themes/bite/front-page/ |
Upload File : |
<?php
$bite_slider_sc = bite_get_theme_option( 'front_page_title_shortcode' );
if ( ! empty( $bite_slider_sc ) && strpos( $bite_slider_sc, '[' ) !== false && strpos( $bite_slider_sc, ']' ) !== false ) {
?><div class="front_page_section front_page_section_title front_page_section_slider front_page_section_title_slider
<?php
if ( bite_get_theme_option( 'front_page_title_stack' ) ) {
echo ' sc_stack_section_on';
}
?>
">
<?php
// Add anchor
$bite_anchor_icon = bite_get_theme_option( 'front_page_title_anchor_icon' );
$bite_anchor_text = bite_get_theme_option( 'front_page_title_anchor_text' );
if ( ( ! empty( $bite_anchor_icon ) || ! empty( $bite_anchor_text ) ) && shortcode_exists( 'trx_sc_anchor' ) ) {
echo do_shortcode(
'[trx_sc_anchor id="front_page_section_title"'
. ( ! empty( $bite_anchor_icon ) ? ' icon="' . esc_attr( $bite_anchor_icon ) . '"' : '' )
. ( ! empty( $bite_anchor_text ) ? ' title="' . esc_attr( $bite_anchor_text ) . '"' : '' )
. ']'
);
}
// Show slider (or any other content, generated by shortcode)
echo do_shortcode( $bite_slider_sc );
?>
</div>
<?php
} else {
?>
<div class="front_page_section front_page_section_title
<?php
$bite_scheme = bite_get_theme_option( 'front_page_title_scheme' );
if ( ! empty( $bite_scheme ) && ! bite_is_inherit( $bite_scheme ) ) {
echo ' scheme_' . esc_attr( $bite_scheme );
}
echo ' front_page_section_paddings_' . esc_attr( bite_get_theme_option( 'front_page_title_paddings' ) );
if ( bite_get_theme_option( 'front_page_title_stack' ) ) {
echo ' sc_stack_section_on';
}
?>
"
<?php
$bite_css = '';
$bite_bg_image = bite_get_theme_option( 'front_page_title_bg_image' );
if ( ! empty( $bite_bg_image ) ) {
$bite_css .= 'background-image: url(' . esc_url( bite_get_attachment_url( $bite_bg_image ) ) . ');';
}
if ( ! empty( $bite_css ) ) {
echo ' style="' . esc_attr( $bite_css ) . '"';
}
?>
>
<?php
// Add anchor
$bite_anchor_icon = bite_get_theme_option( 'front_page_title_anchor_icon' );
$bite_anchor_text = bite_get_theme_option( 'front_page_title_anchor_text' );
if ( ( ! empty( $bite_anchor_icon ) || ! empty( $bite_anchor_text ) ) && shortcode_exists( 'trx_sc_anchor' ) ) {
echo do_shortcode(
'[trx_sc_anchor id="front_page_section_title"'
. ( ! empty( $bite_anchor_icon ) ? ' icon="' . esc_attr( $bite_anchor_icon ) . '"' : '' )
. ( ! empty( $bite_anchor_text ) ? ' title="' . esc_attr( $bite_anchor_text ) . '"' : '' )
. ']'
);
}
?>
<div class="front_page_section_inner front_page_section_title_inner
<?php
if ( bite_get_theme_option( 'front_page_title_fullheight' ) ) {
echo ' bite-full-height sc_layouts_flex sc_layouts_columns_middle';
}
?>
"
<?php
$bite_css = '';
$bite_bg_mask = bite_get_theme_option( 'front_page_title_bg_mask' );
$bite_bg_color_type = bite_get_theme_option( 'front_page_title_bg_color_type' );
if ( 'custom' == $bite_bg_color_type ) {
$bite_bg_color = bite_get_theme_option( 'front_page_title_bg_color' );
} elseif ( 'scheme_bg_color' == $bite_bg_color_type ) {
$bite_bg_color = bite_get_scheme_color( 'bg_color', $bite_scheme );
} else {
$bite_bg_color = '';
}
if ( ! empty( $bite_bg_color ) && $bite_bg_mask > 0 ) {
$bite_css .= 'background-color: ' . esc_attr(
1 == $bite_bg_mask ? $bite_bg_color : bite_hex2rgba( $bite_bg_color, $bite_bg_mask )
) . ';';
}
if ( ! empty( $bite_css ) ) {
echo ' style="' . esc_attr( $bite_css ) . '"';
}
?>
>
<div class="front_page_section_content_wrap front_page_section_title_content_wrap content_wrap">
<?php
// Caption
$bite_caption = bite_get_theme_option( 'front_page_title_caption' );
if ( ! empty( $bite_caption ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
?>
<h1 class="front_page_section_caption front_page_section_title_caption front_page_block_<?php echo ! empty( $bite_caption ) ? 'filled' : 'empty'; ?>"><?php echo wp_kses( $bite_caption, 'bite_kses_content' ); ?></h1>
<?php
}
// Description (text)
$bite_description = bite_get_theme_option( 'front_page_title_description' );
if ( ! empty( $bite_description ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
?>
<div class="front_page_section_description front_page_section_title_description front_page_block_<?php echo ! empty( $bite_description ) ? 'filled' : 'empty'; ?>"><?php echo wp_kses( wpautop( $bite_description ), 'bite_kses_content' ); ?></div>
<?php
}
// Buttons
if ( bite_get_theme_option( 'front_page_title_button1_link' ) != '' || bite_get_theme_option( 'front_page_title_button2_link' ) != '' ) {
?>
<div class="front_page_section_buttons front_page_section_title_buttons">
<?php
bite_show_layout( bite_customizer_partial_refresh_front_page_title_button1_link() );
bite_show_layout( bite_customizer_partial_refresh_front_page_title_button2_link() );
?>
</div>
<?php
}
?>
</div>
</div>
</div>
<?php
}