Server IP : 192.64.118.117 / Your IP : 18.218.145.54 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/www/wp-content/themes/creditrepairII/ |
Upload File : |
<?php /** * The template for displaying the footer. * * Contains the closing of the #content div and all content after * * @package Credit Repair II */ ?> <section id="testimonial"> <div class="container"> <?php $icon_section_testimonials = get_option_tree( 'page-section-testimonials'); if($icon_section_testimonials == 'on') : ?> <h2 class="text-center wow rubberBand"><?php get_option_tree( 'testimonials-title', '', 'true' ); ?></h2> <?php $args = array ( 'post_type' => 'testimonials', 'post_status' => 'publish', 'posts_per_page' => '-1', 'order' => 'DESC', 'orderby' => 'date', ); // The Query $query = new WP_Query( $args ); // The Loop if ( $query->have_posts() ) { ?> <div class="row"> <div class="col-sm-12"> <div id="owl-testimonial" class="owl-carousel owl-theme team-items"> <?php while ( $query->have_posts() ) { $query->the_post(); ?> <blockquote class="item"> <p> <?php ob_start(); the_content(); $old_content = ob_get_clean(); $new_content = strip_tags($old_content); echo $new_content; ?> </p> <footer> <cite><?php echo get_the_title(); ?></cite> </footer> </blockquote> <?php } ?> </div> </div> </div> <?php } // Restore original Post Data wp_reset_postdata(); ?> <?php else : ?> <div class="row call-action"> <?php $call_act = get_option_tree( 'call_to_action' ); echo do_shortcode( $call_act ); ?> </div> <?php endif; ?> </div> </section> <footer id="footer"> <div class="container"> <div class="row"> <div class="col-sm-3"> <?php dynamic_sidebar( 'footer-1' ); ?> </div> <div class="col-sm-3"> <?php dynamic_sidebar( 'footer-2' ); ?> </div> <div class="col-sm-3"> <?php dynamic_sidebar( 'footer-3' ); ?> </div> <div class="col-sm-3"> <?php dynamic_sidebar( 'footer-4' ); ?> </div> </div> </div> </footer> <div class="copy"> <div class="container"> <div class="row"> <div class="col-sm-12"> <p><?php get_option_tree( 'footer_text', '', 'true' ); ?></p> </div> </div> </div> </div> <?php wp_footer(); ?> <script type="text/javascript"> wow = new WOW( { boxClass: 'wow', // default animateClass: 'animated', // default offset: 0, // default mobile: false, // default live: true // default } ) wow.init(); </script> </body> </html>