HEX
Server: Apache
System: Linux linplesk41.pumo.com.tw 3.10.0-962.3.2.lve1.5.27.el7.x86_64 #1 SMP Sat Nov 30 02:18:52 EST 2019 x86_64
User: rajlaw (10192)
PHP: 7.4.24
Disabled: phpinfo,passthru,exec,shell_exec,system,popen,proc_open,proc_close,show_source,pcntl_exec,escapeshellcmd,proc_get_status,proc_nice,proc_terminate,escapeshellarg
Upload Files
File: /home/httpd/vhosts/rajlaw.com.tw/httpdocs/wp-content/themes/freeware/template-parts/content.php
<?php
/**
 * Template part for displaying posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package freeware
 */

?>
<?php 
$disable_category = get_theme_mod('disable-cateogry',0);
$disable_date = get_theme_mod('disable-date',0);
$disable_author = get_theme_mod('disable-author',0);
$disable_comments = get_theme_mod('disable-comments',0);
$tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', 'freeware' ) );
$excerpt_display = get_theme_mod('excerpt-display','full-content');
$sticky_text = get_theme_mod ('sticky_text',esc_html__('Featured','freeware'));
?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<?php 
	$disable_featured_image_single = get_theme_mod('disable_featured_image_single',0);
	if($disable_featured_image_single !=0 && is_single() ): 
	// Silence is Golder
	else :
		freeware_post_thumbnail();
	endif;

	if ( is_sticky() ) { ?>
		<div class="sticky-post-tag">
			<span class="sticky-name"><?php echo esc_html($sticky_text); ?></span>
   	</div>
	<?php } ?>

	<header class="entry-header">
		<?php
		$excerpt_text = get_theme_mod('excerpt_text',esc_html__('Read More','freeware'));
		

		if ( 'post' === get_post_type() ) :
			if(!empty($tags_list) ) { ?>
			<div class="entry-meta">
				<?php
					freeware_tag_lists();
				?>
			</div><!-- .entry-meta -->
			<?php }

		if ( is_singular() ) :
				the_title( '<h1 class="entry-title">', '</h1>' );
			else :
				the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
			endif;

		if( $disable_date ==0 || $disable_author ==0 ){ ?>
		<div class="entry-meta">
			<?php
			if($disable_author ==0){
				freeware_posted_by();
			}
			if($disable_date ==0){
				freeware_posted_on();
			}
			?>
		</div><!-- .entry-meta -->
		<?php } 

	 endif; ?>
	</header><!-- .entry-header -->
	<div class="entry-content">
		<?php
		if(is_single()){
			the_content();
		} else {
			if($excerpt_display == 'full-content'){
				the_content( sprintf(
				wp_kses(
					/* translators: %s: Name of current post. Only visible to screen readers */
					$excerpt_text. '<span class="screen-reader-text"> "%s"</span>',
					array(
						'span' => array(
							'class' => array(),
						),
					)
				),
				get_the_title()
			) );
			} else {
				the_excerpt();
			}
		}
		

		wp_link_pages( array(
			'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'freeware' ),
			'after'  => '</div>',
		) );
		?>
	</div><!-- .entry-content -->
	<?php if( $disable_comments ==0 || $disable_category ==0 ) { ?>
		<footer class="entry-footer">
			<div class="entry-meta">
				<?php
				if($disable_category ==0) {

					freeware_cat_lists ();

				}

				if( $disable_comments ==0 ) {

					freeware_comment_links();

				}

				?>
			</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
			
	<?php } ?>
</article><!-- #post-<?php the_ID(); ?> -->