| Server IP : 51.91.236.255 / Your IP : 216.73.217.120 Web Server : Apache System : Linux webm002.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : laureet ( 1012854) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/laureet/www/wp-content/themes/rock-singer/sections/ |
Upload File : |
<?php
/**
* Template part for displaying Call to action Section
*
*@package Rock Singer
*/
?>
<?php
$call_to_action_title = rock_singer_get_option( 'call_to_action_title' );
$call_to_action_button_label = rock_singer_get_option( 'call_to_action_button_label' );
$call_to_action_button_url = rock_singer_get_option( 'call_to_action_button_url' );
?>
<div class="wrapper">
<div class="cta-wrapper clear">
<?php if ( !empty($call_to_action_title ) ) :?>
<header class="entry-header">
<h2 class="entry-title"><?php echo esc_html($call_to_action_title); ?></h2>
</header><!-- .entry-header -->
<?php endif;?>
<?php if ( !empty($call_to_action_button_label ) ) :?>
<div class="read-more">
<a href="<?php echo esc_url($call_to_action_button_url); ?>" class="btn"><?php echo esc_html($call_to_action_button_label); ?><i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div><!-- .read-more -->
<?php endif;?>
</div><!-- .cta-wrapper -->
</div><!-- .wrapper -->