HEX
Server: Apache
System: Linux r5.a1center.net 4.18.0-513.5.1.lve.el8.x86_64 #1 SMP Tue Nov 21 10:14:49 UTC 2023 x86_64
User: redpsiju (1623)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/redpsiju/www/wp-content/themes/bizworx/content.php
<?php
/**
 * Template part for displaying posts
 *
 * @package Bizworx
 */

?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> >
	<div class="blog-post">
		<div class="entry-thumb">
			<a href="<?php esc_url( the_permalink() ); ?>" title="<?php esc_attr( the_title_attribute() ); ?>"><?php the_post_thumbnail('bizworx-large-thumb'); ?></a>
		</div>
		<header class="entry-header">
			<?php the_title( sprintf( '<h2 class="title-post entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
			<p class="meta-post"> <?php bizworx_posted_on(); bizworx_edit_link();?> </p>
		</header>
		<div class="entry-post">
			<?php if ( (get_theme_mod('full_content_home') == 1 && is_home() ) || (get_theme_mod('full_content_archives') == 1 && is_archive() ) ) : ?>
				<?php the_content(); ?>
			<?php else : ?>
				<?php the_excerpt(); ?>
			<?php endif ?>
			<?php
				wp_link_pages( array(
					'before' => '<div class="page-links">' . __( 'Pages:', 'bizworx' ),
					'after'  => '</div>',
				) );
			?>
		</div>

	</div><!-- /.blog-post -->
</article><!-- /article -->