Your IP : 216.73.216.95


Current Path : /var/test/www/ya/wp-content/themes/youthy/post-formats/
Upload File :
Current File : /var/test/www/ya/wp-content/themes/youthy/post-formats/content.php

<?php

	// Get custom post meta
	$prefix = '_youthy_';
	$subtitle = get_post_meta($post->ID, $prefix . 'subtitle', true);;

?>

<article <?php post_class('content'); ?> id="post-<?php the_ID(); ?>">

<?php if ( has_post_thumbnail() ) {
		$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'default' ); ?>
		<div class="post-image-holder"<?php if ( has_post_thumbnail() ) { ?> style="background-image: url( <?php echo esc_url( $image[0] ); ?>);"<?php } ?>>
			<div class="post-head">
				<h1 class="post-title">
					<?php the_title(); ?>
				</h1>
			<?php if ( $subtitle ) { ?>
				<h2 class="sub-title"><?php echo esc_html( $subtitle ); ?></h2>
			<?php } ?>
		</div>
	</div>
<?php } ?>


	<div class="inner">

		<div class="post-content min-wrap">

			<?php if ( !has_post_thumbnail() ) { ?>

							<h1 class="post-title">
								<?php the_title(); ?>
							</h1>
						<?php if ( $subtitle ) { ?>
							<h2 class="sub-title"><?php echo esc_html( $subtitle ); ?></h2>
						<?php } ?>

		<?php } ?>

		<?php get_template_part( '_template-parts/_part-meta-top' ); ?>

		<div class="the-content">

			<?php the_content(); ?>

		</div>

		<?php wp_link_pages( array( 'before' => '<nav class="pagination">' . __( '<span>Pages:</span>', 'meanthemes' ), 'after' => '</nav>' ) ); ?>

		<?php if( function_exists('zilla_likes') ) zilla_likes(); ?>

		<?php get_template_part( '_template-parts/_part-meta-bottom' ); ?>

		<?php get_template_part( '_template-parts/_part-author' ); ?>

	</div>

</div>



</article>




<?php get_template_part('_template-parts/_part-nav-prev-next'); ?>
<?php get_template_part( '_template-parts/_part-related' ); ?>

<?php

	if ( is_single() ) {

		// grab comments template
		get_template_part( '_template-parts/_part-comments' );

	}

?>