| 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/avril/sections/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if ( ! function_exists( 'avril_lite_cta' ) ) :
function avril_lite_cta() {
$avril_hs_cta = get_theme_mod('hs_cta','1');
$avril_cta_title = get_theme_mod('cta_title',__('We work in partnership with all the major <span class="primary-color"><em>technology</em></span> solutions','clever-fox'));
$avril_cta_description = get_theme_mod('cta_description',__('There are many variations of passages of lorem Ipsum available, but the majority','clever-fox'));
$avril_cta_btn_lbl1 = get_theme_mod('cta_btn_lbl1',__('Purchase Now','clever-fox'));
$avril_cta_btn_link1 = get_theme_mod('cta_btn_link1');
if($avril_hs_cta == '1') {
?>
<section id="cta-section" class="cta-section cta-shadow-one av-mb-default home-cta">
<div class="av-container">
<div class="av-columns-area">
<div class="av-column-12">
<div class="cta-wrapper">
<div class="cta-content">
<?php if ( ! empty( $avril_cta_title ) ) : ?>
<h4><?php echo wp_kses_post($avril_cta_title); ?></H4>
<?php endif; ?>
<?php if ( ! empty($avril_cta_description) ) : ?>
<p><?php echo wp_kses_post($avril_cta_description); ?></p>
<?php endif; ?>
</div>
<div class="cta-btn-wrap text-av-right text-center">
<?php if ( ! empty( $avril_cta_btn_lbl1 ) ) : ?>
<a href="<?php echo esc_url($avril_cta_btn_link1); ?>" class="av-btn av-btn-primary" data-text="Contact With Us"><?php echo esc_html($avril_cta_btn_lbl1); ?></a>
<?php endif;?>
</div>
</div>
</div>
</div>
</div>
</section>
<?php
}} endif;
if ( function_exists( 'avril_lite_cta' ) ) {
$cleverfox_section_priority = apply_filters( 'avril_section_priority', 18, 'avril_lite_cta' );
add_action( 'avril_sections', 'avril_lite_cta', absint( $cleverfox_section_priority ) );
}