/** * Related Posts – Alive Version * With match percentage + better cards */ function sudanjem_related_posts_alive() { if ( ! is_singular( 'post' ) ) { return; } $categories = get_the_category(); if ( empty( $categories ) ) { return; } $query = new WP_Query( array( 'category__in' => wp_list_pluck( $categories, 'term_id' ), 'post__not_in' => array( get_the_ID() ), 'posts_per_page' => 8, 'ignore_sticky_posts' => true, 'no_found_rows' => true, ) ); if ( ! $query->have_posts() ) { return; } echo ''; wp_reset_postdata(); }