HEX
Server: nginx/1.18.0
System: Linux oas2 6.8.0-1039-oracle #40~22.04.1-Ubuntu SMP Wed Oct 29 05:11:00 UTC 2025 aarch64
User: root (0)
PHP: 8.1.2-1ubuntu2.23
Disabled: NONE
Upload Files
File: /var/www/ecom/wp-content/themes/electro/templates/contents/content-quote.php
<?php
/**
 * @package electro
 */

$additional_post_classes = apply_filters( 'electro_additional_post_classes', array() );

?>

<article id="post-<?php the_ID(); ?>" <?php post_class( $additional_post_classes ); ?>>

	<div class="entry-content">

		<?php
			$quote_text = get_post_meta ( get_the_ID() , 'postformat_quote_text' , true );
			$quote_source = get_post_meta( get_the_ID() , 'postformat_quote_source' , true );
		?>

		<?php if( ! empty( $quote_text ) ) : ?>
		<blockquote>
			<p><?php echo esc_html( $quote_text ); ?></p>
			<cite><?php echo esc_html( $quote_source ); ?></cite>
		</blockquote>
		<?php endif; ?>

		<?php
		the_content(
			sprintf(
				__( 'Continue reading %s', 'electro' ),
				'<span class="screen-reader-text">' . get_the_title() . '</span>'
			)
		);
		wp_link_pages( array(
			'before' => '<div class="page-links">' . __( 'Pages:', 'electro' ),
			'after'  => '</div>',
		) );
		?>
	</div><!-- .entry-content -->

</article><!-- #post-## -->