| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/ifwar.ru/www/wp-content/plugins/clever-fox/inc/webique/sections/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if(! function_exists('webique_header_animation_bar')):
function webique_header_animation_bar() {
$webique_header_marquee_titles = get_theme_mod('header_marquee_titles',header_marquee_default());
$webique_theme = wp_get_theme();
$webique_webique_theme = $webique_theme->get('Name');
$webique_hide_show_hdr_anim_bar = get_theme_mod('hide_show_hdr_anim_bar','1');
if( $webique_hide_show_hdr_anim_bar == '1' ) {
?>
<div class="<?php if($webique_webique_theme === 'Webora') echo esc_attr('header-marquee'); ?> marquee-header marquee-section style1 bg-gradient2 mrq-loop" direction="right" scrollamount="30">
<ul>
<?php
$webique_header_marquee_titles = json_decode($webique_header_marquee_titles);
if( $webique_header_marquee_titles!='' )
{
foreach($webique_header_marquee_titles as $webique_index => $webique_marquee_item){
$webique_repeater_marquee_title = ! empty( $webique_marquee_item->title ) ? apply_filters( 'webique_translate_single_string', $webique_marquee_item->title, 'Header Section' ) : '';
$webique_repeater_marquee_link = ! empty( $webique_marquee_item->link ) ? apply_filters( 'webique_translate_single_string', $webique_marquee_item->link, 'Header Section' ) : '';
$webique_repeater_newtab = ! empty( $webique_marquee_item->newtab ) ? apply_filters( 'webique_translate_single_string', $webique_marquee_item->newtab, 'Header section' ) : '';
$webique_repeater_nofollow = ! empty( $webique_marquee_item->nofollow ) ? apply_filters( 'webique_translate_single_string', $webique_marquee_item->nofollow, 'Header section' ) : '';
?>
<li class="item wow <?php if($webique_index%2 == '0') { echo 'slideInRight active'; } else { echo 'slideInLeft'; } ?>"><a href="<?php echo esc_url($webique_repeater_marquee_link); ?>" <?php if($webique_repeater_newtab =='yes') {echo 'target="_blank"'; } ?> rel="<?php if($webique_repeater_newtab =='yes') {echo 'noreferrer noopener'; } ?> <?php if($webique_repeater_nofollow =='yes') {echo 'nofollow'; } ?>"><?php echo esc_html($webique_repeater_marquee_title); ?></a></li>
<?php }} ?>
</ul>
</div>
<?php
}}
endif;
add_action('webique_header_animation_bar','webique_header_animation_bar');