HEX
Server: Apache
System: Linux gains.arrowcloudlinux.com 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64
User: mbkashyap (2642)
PHP: 8.1.33
Disabled: allow_url_include, show_source, symlink, system, passthru, exec, popen, pclose, proc_open, proc_terminate,proc_get_status, proc_close, proc_nice, allow_url_fopen, shell-exec, shell_exec, fpassthru, base64_encodem, escapeshellcmd, escapeshellarg, crack_check,crack_closedict, crack_getlastmessage, crack_opendict, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, dl, escap, phpinfo
Upload Files
File: /home/mbkashyap/public_html/wp-content/themes/bizmaster/template-parts/content/thumbnail-quote.php
<?php
/**
 * Post Thumbnail Video
 * @package bizmaster
 * @since 1.0.0
 */

$bizmaster = bizmaster();
$post_meta = get_post_meta(get_the_ID(),'bizmaster_post_quote_options',true);
$quote_text = isset($post_meta['quote_text']) && $post_meta['quote_text'] ? $post_meta['quote_text'] : '';
$quote_author = isset($post_meta['quote_author']) && $post_meta['quote_author'] ? $post_meta['quote_author'] : '';
$quote_author_position = isset($post_meta['quote_author_position']) && $post_meta['quote_author_position'] ? $post_meta['quote_author_position'] : '';
if(!empty($quote_text)) { ?>
	<blockquote class="highlighted-quote">
		<p><?php echo esc_html($quote_text); ?></p>
		<footer>
			<?php if(!empty($quote_author)) { ?>
				<div class="author-name"><?php echo esc_html($quote_author); ?></div>
			<?php } ?>
			<?php if(!empty($quote_author_position)) { ?>
				<cite><?php echo esc_html($quote_author_position); ?></cite>
			<?php } ?>
		</footer>
	</blockquote>
<?php } else { ?>
	<?php get_template_part('template-parts/content/thumbnail-classic'); ?>
<?php } ?>