Current File : /home/kelaby89/www/wp/wp-content/themes/nexio/skins/default/templates/related-posts-modern.php |
<?php
/**
* The template 'Style 1' to displaying related posts
*
* @package NEXIO
* @since NEXIO 1.0
*/
$nexio_link = get_permalink();
$nexio_post_format = get_post_format();
$nexio_post_format = empty( $nexio_post_format ) ? 'standard' : str_replace( 'post-format-', '', $nexio_post_format );
?><div id="post-<?php the_ID(); ?>" <?php post_class( 'related_item post_format_' . esc_attr( $nexio_post_format ) ); ?> data-post-id="<?php the_ID(); ?>">
<?php
nexio_show_post_featured(
array(
'thumb_size' => apply_filters( 'nexio_filter_related_thumb_size', nexio_get_thumb_size( (int) nexio_get_theme_option( 'related_posts' ) == 1 ? 'huge' : 'big' ) ),
'post_info' => '<div class="post_header entry-header">'
. '<div class="post_categories">' . wp_kses( nexio_get_post_categories( '' ), 'nexio_kses_content' ) . '</div>'
. '<h6 class="post_title entry-title"><a href="' . esc_url( $nexio_link ) . '">'
. wp_kses_data( '' == get_the_title() ? esc_html__( '- No title -', 'nexio' ) : get_the_title() )
. '</a></h6>'
. ( in_array( get_post_type(), array( 'post', 'attachment' ) )
? '<div class="post_meta"><a href="' . esc_url( $nexio_link ) . '" class="post_meta_item post_date">' . wp_kses_data( nexio_get_date() ) . '</a></div>'
: '' )
. '</div>',
)
);
?>
</div>