![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/walla3t.corals.io/wp-content/themes/apper/partials/entry/ |
<?php /** * Blog entry quote format * * @package Apper WordPress theme */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } // Return if acmthemes Extra is not active if ( ! ACMTHEMES_EXTRA_ACTIVE ) { return; } // Quote link $link = get_post_meta( get_the_ID(), 'quote_format_link', true ); // Add post classes $classes = acmthemes_post_entry_classes(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?>> <div class="post-quote-wrap"> <?php if ( 'post' == $link ) { ?> <a href="<?php the_permalink(); ?>" class="thumbnail-link"> <?php } ?> <div class="post-quote-content"> <?php echo wp_kses_post( get_post_meta( get_the_ID(), 'quote_format', true ) ); ?> <span class="post-quote-icon icon-speech"></span> </div> <div class="post-quote-author"><?php the_title(); ?></div> <?php if ( 'post' == $link ) { ?> </a> <?php } ?> </div> </article>