????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/peekmysite.com/wp-content/themes/CherryFramework/loop/ |
Upload File : |
<?php /* Loop Name: Single Testi */ ?> <div class="page-header"> <h1><?php the_title(); ?></h1> </div> <?php if (have_posts()) : while (have_posts()) : the_post(); $testiname = get_post_meta( $post->ID, 'my_testi_caption', true ); $testiurl = esc_url( get_post_meta( $post->ID, 'my_testi_url', true ) ); $testiinfo = get_post_meta( $post->ID, 'my_testi_info', true ); $testiemail = sanitize_email( get_post_meta( $post->ID, 'my_testi_email', true ) ); ?> <article id="post-<?php the_ID(); ?>" class="testimonial"> <blockquote class="testimonial_bq"> <?php if(has_post_thumbnail()) { $thumb = get_post_thumbnail_id(); $img_url = wp_get_attachment_url( $thumb,'full'); //get img URL $image = aq_resize( $img_url, 120, 120, true ); //resize & crop img ?> <figure class="featured-thumbnail thumbnail hidden-phone"> <img src="<?php echo $image ?>" alt="<?php the_title(); ?>" /> </figure> <?php } ?> <div class="testimonial_content"> <?php the_content(); ?> <div class="clear"></div> <small> <?php if ( !empty( $testiname ) ) { ?> <span class="user"><?php echo $testiname; ?></span><?php echo ', '; ?> <?php } ?> <?php if ( !empty( $testiinfo ) ) { ?> <span class="info"><?php echo $testiinfo; ?></span><br> <?php } ?> <?php if ( !empty( $testiurl ) ) { ?> <a class="testi-url" href="<?php echo $testiurl; ?>" target="_blank"><?php echo $testiurl; ?></a><br> <?php } ?> <?php if ( !empty( $testiemail ) && is_email( $testiemail ) ) { echo '<a class="testi-email" href="mailto:' . antispambot( $testiemail, 1 ) . '">' . antispambot( $testiemail ) . ' </a>'; } ?> </small> </div> </blockquote> </article> <?php endwhile; else: ?> <div class="no-results"> <?php echo '<p><strong>' . theme_locals("there_has") . '</strong></p>'; ?> <p><?php echo theme_locals("we_apologize"); ?> <a href="<?php echo home_url(); ?>/" title="<?php bloginfo('description'); ?>"><?php echo theme_locals("return_to"); ?></a> <?php echo theme_locals("search_form"); ?></p> <?php get_search_form(); /* outputs the default Wordpress search form */ ?> </div><!--no-results--> <?php endif; ?> <ul class="pager single-pager"> <li class="previous"> <?php previous_post_link('%link', theme_locals("prev_post")) ?> </li><!--.previous--> <li class="next"> <?php next_post_link('%link', theme_locals("next_post")) ?> </li><!--.next--> </ul><!--.pager-->