HEX
Server: LiteSpeed
System: Linux linux31.centraldnserver.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: salamatk (1501)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/salamatk/takarzan.ir/wp-content/themes/xts-luman/templates/content-format-quote.php
<?php
/**
 * Template used to display post content in quote format.
 *
 * @package xts
 */

$article_id           = get_the_ID();
$post_content_classes = '';

if ( ! xts_get_loop_prop( 'blog_post_black_white' ) ) {
	$post_content_classes = ' xts-scheme-light';
}

?>

<article id="post-<?php echo esc_attr( $article_id ); ?>" <?php post_class( xts_get_post_classes() ); ?>>

	<a href="<?php echo esc_url( get_permalink() ); ?>" class="xts-post-link xts-fill" rel="bookmark" aria-label="<?php echo esc_attr( sprintf( __( 'Link on post %s', 'xts-theme' ), esc_attr( get_the_title() ) ) ); ?>"></a>

	<?php if ( has_post_thumbnail() ) : ?>
		<div class="xts-post-image xts-with-bg xts-fill" style="background-image:url(<?php echo esc_url( get_the_post_thumbnail_url() ); ?>);"></div>
	<?php endif; ?>

	<?php xts_meta_post_labels(); ?>

	<div class="xts-post-hover xts-fill"></div>

	<div class="xts-post-content<?php echo esc_attr( $post_content_classes ); ?>">
		<?php xts_post_quote_template( false ); ?>
	</div>

</article>