'. esc_html( wp_trim_words( get_the_excerpt(), $limit) ) .'
'; } endif; /* ** Related Posts Section */ if ( ! function_exists( 'graceful_related_posts' ) ) : function graceful_related_posts( $title, $orderby ) { global $post; $current_categories = get_the_category(); if ( $current_categories ) { $first_category = $current_categories[0]->term_id; $args = array( 'post_type' => 'post', 'post__not_in' => array( $post->ID ), 'orderby' => $orderby === 'random' ? 'rand' : 'date', 'posts_per_page' => 3, 'ignore_sticky_posts' => 1, 'category__in' => array( $first_category ), 'meta_query' => array( array( 'key' => '_thumbnail_id', 'compare' => 'EXISTS', ), ), ); $similar_posts = new WP_Query( $args ); if ( $similar_posts->have_posts() ) { ?>