| Server IP : 207.244.250.86 / Your IP : 216.73.216.10 Web Server : Apache System : Linux plesk1.codeponents.com 4.18.0-240.10.1.el8_3.x86_64 #1 SMP Mon Jan 18 17:05:51 UTC 2021 x86_64 User : motionave ( 10025) PHP Version : 8.0.15 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/motionave.com/devsite.motionave.com/wp-content/themes/brooklyn/partials/ |
Upload File : |
<?php
/*
|--------------------------------------------------------------------------
| The template for displaying posts in the standard post format
|--------------------------------------------------------------------------
*/
?>
<?php
/* featured image */
$fullsize = wp_get_attachment_url( get_post_thumbnail_id( $post->ID ) );
$fullsizeID = ut_get_attachment_id_from_url( $fullsize );
?>
<?php /* start output for classic blog , search , category tag or archive page */ ?>
<!-- post -->
<article id="post-<?php the_ID(); ?>" <?php post_class( 'clearfix' ); ?> >
<!-- entry-meta -->
<div class="grid-25 tablet-grid-25 hide-on-mobile">
<div class="entry-meta">
<?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
<div class="date-format">
<span class="day"><?php the_time('d'); ?></span>
<span class="month"><?php the_time('M'); ?> <?php the_time('Y'); ?></span>
</div>
<span class="ut-sticky"><i class="fa fa-thumb-tack"></i><?php esc_html_e('Sticky Post', 'unitedthemes') ?></span>
<span class="author-links"><i class="fa fa-user"></i><?php esc_html_e('By', 'unitedthemes') ?> <?php the_author_posts_link(); ?></span>
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( esc_html__( ', ', 'unitedthemes' ) );
if ( $categories_list && unitedthemes_categorized_blog() ) :
?>
<span class="cat-links"><i class="fa fa-folder-open-o"></i><?php printf( esc_html__( 'Posted in %1$s', 'unitedthemes' ), $categories_list ); ?></span>
<?php endif; // End if categories ?>
<?php endif; // End if 'post' == get_post_type() ?>
<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="comments-link"><i class="fa fa-comments-o"></i><?php esc_html_e('With', 'unitedthemes') ?> <?php comments_popup_link(esc_html__('No Comments', 'unitedthemes'), esc_html__('1 Comment', 'unitedthemes'), esc_html__('% Comments', 'unitedthemes')); ?></span>
<?php endif; ?>
<span class="permalink"><i class="fa fa-link"></i><a title="<?php printf(esc_html__('Permanent Link to %s', 'unitedthemes'), get_the_title()); ?>" href="<?php the_permalink(); ?>"><?php esc_html_e('Permalink', 'unitedthemes') ?></a></span>
<?php edit_post_link( esc_html__( 'Edit', 'unitedthemes' ), '<span class="edit-link"><i class="fa fa-pencil-square-o"></i>', '</span>' ); ?>
</div>
</div><!-- close entry-meta -->
<?php if ( is_single() ) : ?>
<div class="ut-richsnippet-meta hide-on-desktop hide-on-tablet hide-on-mobile">
<span class="date updated"><?php echo get_the_date();?></span>
<span class="vcard author">
<span class="fn"><?php the_author(); ?></span>
</span>
</div>
<?php endif; ?>
<div class="grid-75 tablet-grid-75 mobile-grid-100">
<!-- entry-header -->
<header class="entry-header">
<?php if ( is_single() ) : ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php else : ?>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(esc_html__('Permanent Link to %s', 'unitedthemes'), get_the_title()); ?>"> <?php the_title(); ?></a></h2>
<?php endif; // is_single() ?>
<div class="entry-meta hide-on-desktop hide-on-tablet">
<?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
<span class="ut-sticky"><i class="fa fa-thumb-tack"></i><?php esc_html_e('Sticky Post', 'unitedthemes') ?></span>
<span class="author-links"><i class="fa fa-user"></i><?php esc_html_e('By', 'unitedthemes') ?> <?php the_author_posts_link(); ?></span>
<span class="date-format"><i class="fa fa-clock-o"></i><?php esc_html_e('On', 'unitedthemes') ?> <span><?php the_time( get_option('date_format') ); ?></span></span>
<?php endif; // End if 'post' == get_post_type() ?>
<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="comments-link"><i class="fa fa-comments-o"></i><?php esc_html_e('With', 'unitedthemes') ?> <?php comments_popup_link(esc_html__('No Comments', 'unitedthemes'), esc_html__('1 Comment', 'unitedthemes'), esc_html__('% Comments', 'unitedthemes')); ?></span>
<?php endif; ?>
</div>
</header><!-- close entry-header -->
<?php /* check if featured has been set and display it */ ?>
<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
<!-- ut-post-thumbnail -->
<div class="ut-post-thumbnail">
<?php $thumbnail = ut_resize( $fullsize , '855' , '425', true , true ); ?>
<?php $caption = get_post( $fullsizeID )->post_excerpt; ?>
<?php if ( is_single() ) : ?>
<div class="entry-thumbnail">
<img alt="<?php echo $caption; ?>" class="wp-post-image" src="<?php echo $thumbnail; ?>">
</div>
<?php else : ?>
<div class="entry-thumbnail">
<a title="<?php printf(esc_html__('Permanent Link to %s', 'unitedthemes'), get_the_title()); ?>" href="<?php the_permalink(); ?>">
<img alt="<?php echo $caption; ?>" class="wp-post-image" src="<?php echo $thumbnail; ?>">
</a>
</div>
<?php endif; // is_single() ?>
</div><!-- close ut-post-thumbnail -->
<?php endif; ?>
<?php /* end featured image */ ?>
<?php if ( is_search() || ( !is_single() && has_excerpt() ) ) : ?>
<!-- entry-summary -->
<div class="entry-summary clearfix">
<?php the_excerpt(); ?>
<p>
<a href="<?php the_permalink(); ?>" class="more-link">
<span class="more-link"> <?php esc_html_e( 'Read more', 'unitedthemes' ); ?><i class="fa fa-chevron-circle-right"></i></span>
</a>
</p>
</div><!-- close entry-summary -->
<?php else : ?>
<!-- entry-content -->
<div class="entry-content clearfix">
<?php the_content( '<span class="more-link">' . esc_html__( 'Read more', 'unitedthemes' ) . '<i class="fa fa-chevron-circle-right"></i></span>' ); ?>
<?php ut_link_pages( array( 'before' => '<div class="page-links">', 'after' => '</div>' ) ); ?>
<?php if ( is_single() ) : ?>
<?php
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', esc_html__( ', ', 'unitedthemes' ) );
if ( $tags_list ) :
?>
<span class="tags-links">
<i class="fa fa-tags"></i><?php printf( esc_html__( 'Tagged: %1$s', 'unitedthemes' ), $tags_list ); ?>
</span>
<?php endif; // End if $tags_list ?>
<?php endif; // is_single() ?>
</div><!-- close entry-content -->
<?php endif; ?>
</div>
</article><!-- close post -->
<?php if ( is_single() && get_the_author_meta( 'description' )) : ?>
<?php get_template_part( 'author-bio' ); ?>
<?php endif; ?>