Bump to 1.4.0, made some fixes for 8.2+
This commit is contained in:
@@ -6,40 +6,32 @@
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
if (has_post_thumbnail()) {
|
||||
$post_class = "has-thumbnail wow fadeInUp";
|
||||
} else {
|
||||
$post_class = "no-thumbnail wow fadeInUp";
|
||||
} ?>
|
||||
$post_class = has_post_thumbnail() ? "has-thumbnail wow fadeInUp" : "no-thumbnail wow fadeInUp";
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class($post_class); ?>>
|
||||
<?php
|
||||
echo '<div class="thumb-cat-wrap">';
|
||||
if (has_post_thumbnail()) {
|
||||
echo '<a href="' . esc_url(get_permalink()) . '" rel="bookmark">';
|
||||
sophia_after_dark_post_thumbnail();
|
||||
echo "</a>";
|
||||
}
|
||||
sophia_after_dark_article_categories_list();
|
||||
echo "</div>";
|
||||
if ("post" === get_post_type()) { ?>
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class( $post_class ); ?>>
|
||||
<div class="thumb-cat-wrap">
|
||||
<?php if ( has_post_thumbnail() ) : ?>
|
||||
<a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark">
|
||||
<?php sophia_after_dark_post_thumbnail(); ?>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php sophia_after_dark_article_categories_list(); ?>
|
||||
</div>
|
||||
|
||||
<?php if ( "post" === get_post_type() ) : ?>
|
||||
<div class="entry-cat">
|
||||
<?php
|
||||
sophia_after_dark_posted_on();
|
||||
sophia_after_dark_posted_by();
|
||||
?>
|
||||
</div>
|
||||
<?php }
|
||||
?>
|
||||
<?php endif; ?>
|
||||
|
||||
<header class="entry-header">
|
||||
<?php the_title(
|
||||
'<h2 class="entry-title"><a href="' .
|
||||
esc_url(get_permalink()) .
|
||||
'" rel="bookmark">',
|
||||
"</a></h2>"
|
||||
); ?>
|
||||
</header>
|
||||
<?php the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); ?>
|
||||
</header>
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php sophia_after_dark_entry_footer(); ?>
|
||||
|
||||
@@ -6,39 +6,36 @@
|
||||
* @since 1.0.0
|
||||
*/
|
||||
global $post;
|
||||
$related_post_id = get_the_id();
|
||||
$related_post_id = get_the_ID();
|
||||
$get_categories = get_the_terms( $related_post_id, 'category' );
|
||||
$selected_cat = array();
|
||||
$selected_cat = ! empty( $get_categories ) && is_array( $get_categories ) ? wp_list_pluck( $get_categories, 'term_id' ) : [];
|
||||
|
||||
// Get only category slug of current post.
|
||||
if ( $get_categories && is_array( $get_categories ) ) {
|
||||
foreach ( $get_categories as $category ) {
|
||||
$selected_cat[] = $category->term_id;
|
||||
}
|
||||
}
|
||||
$related_posts_count = apply_filters( 'sophia_after_dark_related_posts_count', 3 );
|
||||
$related_posts_title = apply_filters( 'sophia_after_dark_related_posts_section_title', __( 'Related Posts', 'sophia-after-dark' ) );
|
||||
|
||||
$related_posts_args = array(
|
||||
$related_posts_args = [
|
||||
'posts_per_page' => absint( $related_posts_count ),
|
||||
'post__not_in' => array( $related_post_id ),
|
||||
'post__not_in' => [ $related_post_id ],
|
||||
'category__in' => $selected_cat,
|
||||
);
|
||||
];
|
||||
|
||||
$related_posts_query = new WP_Query( $related_posts_args );
|
||||
if ( $related_posts_query->have_posts() ) {
|
||||
|
||||
if ( $related_posts_query->have_posts() ) :
|
||||
?>
|
||||
<section class="mt-single-related-posts">
|
||||
<h2 class="mt-related-post-title"><?php echo esc_html( $related_posts_title ); ?></h2>
|
||||
|
||||
<div class="mt-related-posts-wrapper">
|
||||
<?php
|
||||
while ( $related_posts_query->have_posts() ) {
|
||||
while ( $related_posts_query->have_posts() ) :
|
||||
$related_posts_query->the_post();
|
||||
get_template_part( 'template-parts/related/content', 'related' );
|
||||
}
|
||||
endwhile;
|
||||
?>
|
||||
</div>
|
||||
</section>
|
||||
<?php
|
||||
}
|
||||
endif;
|
||||
|
||||
wp_reset_postdata();
|
||||
|
||||
Reference in New Issue
Block a user