Current File : /home/kelaby89/cartel.express/wp-content/themes/detailx/skins/default/templates/related-posts.php |
<?php
/**
* The default template to displaying related posts
*
* @package DETAILX
* @since DETAILX 1.0.54
*/
$detailx_link = get_permalink();
$detailx_post_format = get_post_format();
$detailx_post_format = empty( $detailx_post_format ) ? 'standard' : str_replace( 'post-format-', '', $detailx_post_format );
?><div id="post-<?php the_ID(); ?>" <?php post_class( 'related_item post_format_' . esc_attr( $detailx_post_format ) ); ?> data-post-id="<?php the_ID(); ?>">
<?php
detailx_show_post_featured(
array(
'thumb_size' => apply_filters( 'detailx_filter_related_thumb_size', detailx_get_thumb_size( (int) detailx_get_theme_option( 'related_posts' ) == 1 ? 'huge' : 'big' ) ),
)
);
?>
<div class="post_header entry-header">
<h6 class="post_title entry-title"><a href="<?php echo esc_url( $detailx_link ); ?>"><?php
if ( '' == get_the_title() ) {
esc_html_e( '- No title -', 'detailx' );
} else {
the_title();
}
?></a></h6>
<?php
if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) {
?>
<span class="post_date"><a href="<?php echo esc_url( $detailx_link ); ?>"><?php echo wp_kses_data( detailx_get_date() ); ?></a></span>
<?php
}
?>
</div>
</div>