PATH:
home
/
letacommog
/
conciergerie_leblanc-closed
/
wp-content
/
themes
/
salient
/
includes
/
post-templates
<?php /** * Status Post Template * * @package Salient WordPress Theme * @subpackage Post Templates * @version 9.0.2 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } global $options; global $post; $masonry_size_pm = get_post_meta( $post->ID, '_post_item_masonry_sizing', true ); $masonry_item_sizing = ( ! empty( $masonry_size_pm ) ) ? $masonry_size_pm : 'regular'; $using_masonry = null; $masonry_type = ( ! empty( $options['blog_masonry_type'] ) ) ? $options['blog_masonry_type'] : 'classic'; ?> <article id="post-<?php the_ID(); ?>" <?php post_class( $masonry_item_sizing ); ?>> <div class="inner-wrap animated"> <div class="post-content"> <?php if ( ! is_single() ) { ?> <?php $extra_class = ''; global $layout; if ( ! has_post_thumbnail() ) { $extra_class = 'no-img'; } ?> <div class="post-meta <?php echo esc_attr( $extra_class ); ?>"> <?php $blog_type = $options['blog_type']; ?> <div class="date"> <?php if ( $blog_type == 'masonry-blog-sidebar' && substr( $layout, 0, 3 ) != 'std' || $blog_type == 'masonry-blog-fullwidth' && substr( $layout, 0, 3 ) != 'std' || $blog_type == 'masonry-blog-full-screen-width' && substr( $layout, 0, 3 ) != 'std' || $layout == 'masonry-blog-sidebar' || $layout == 'masonry-blog-fullwidth' || $layout == 'masonry-blog-full-screen-width' ) { $using_masonry = true; echo get_the_date(); } else { ?> <span class="month"><?php the_time( 'M' ); ?></span> <span class="day"><?php the_time( 'd' ); ?></span> <?php global $options; if ( ! empty( $options['display_full_date'] ) && $options['display_full_date'] == 1 ) { echo '<span class="year">' . get_the_time( 'Y' ) . '</span>'; } } ?> </div><!--/date--> <?php if ( $using_masonry == true && $masonry_type == 'meta_overlaid' ) { } else { ?> <div class="nectar-love-wrap"> <?php if ( function_exists( 'nectar_love' ) ) { nectar_love();} ?> </div><!--/nectar-love-wrap--> <?php } ?> </div><!--/post-meta--> <?php } ?> <div class="content-inner"> <?php if ( has_post_thumbnail() ) { if ( ! is_single() ) { echo '<a href="' . esc_url( get_permalink() ) . '"><span class="post-featured-img">' . get_the_post_thumbnail( $post->ID, 'full', array( 'title' => '' ) ) . '</span></a>'; } global $options; $hide_featrued_image = ( ! empty( $options['blog_hide_featured_image'] ) ) ? $options['blog_hide_featured_image'] : '0'; if ( is_single() && $hide_featrued_image != '1' ) { echo '<span class="post-featured-img">' . get_the_post_thumbnail( $post->ID, 'full', array( 'title' => '' ) ) . '</span>'; } } elseif ( $using_masonry == true && $masonry_type == 'meta_overlaid' ) { // no image added $img_size = ( ! empty( $masonry_item_sizing ) ) ? $masonry_item_sizing : 'portfolio-thumb'; switch ( $img_size ) { case 'large_featured': $no_image_size = 'no-blog-item-large-featured.jpg'; break; case 'wide_tall': $no_image_size = 'no-portfolio-item-tiny.jpg'; break; default: $no_image_size = 'no-portfolio-item-tiny.jpg'; break; } echo '<a href="' . esc_url( get_permalink() ) . '"><span class="post-featured-img"><img src="' . get_template_directory_uri() . '/img/' . $no_image_size . '" alt="no image added yet." /></span></a>'; } ?> <?php if ( ! is_single() ) { ?> <a href="<?php the_permalink(); ?>"> <?php } ?> <div class="status-inner"> <h2 class="title"><?php the_content( '<span class="continue-reading">' . __( 'Read More', 'salient' ) . '</span>' ); ?></h2> <span class="destination"> Status posted by <?php the_author(); ?></span> <span title="Status" class="icon"></span> </div><!--/link-inner--> <?php if ( ! is_single() ) { ?> </a> <?php } ?> <?php global $options; if ( $options['display_tags'] == true ) { if ( is_single() && has_tag() ) { echo '<div class="post-tags"><h4>Tags: </h4>'; the_tags( '', '', '' ); echo '<div class="clear"></div></div> '; } } ?> </div><!--/content-inner--> </div><!--/post-content--> </div><!--/inner-wrap--> </article><!--/article-->
[+]
..
[-] entry-image.php
[edit]
[-] entry-link.php
[edit]
[-] entry-status.php
[edit]
[-] entry-video.php
[edit]
[-] entry-aside.php
[edit]
[-] entry-audio.php
[edit]
[-] desktop.ini
[edit]
[-] entry-quote.php
[edit]
[-] entry-gallery.php
[edit]
[-] entry.php
[edit]