Jeff Morris Named South Carolina Rising Star

Morris Law Accident Injury Lawyers is pleased to announce that Jeff Morris has been recognized as a Rising Star attorney in South Carolina for 2023. This is the 4th consecutive year he has been nominated for the Rising Stars list.
 
Super Lawyers’ Rising Star is a rating service of outstanding lawyers from more than 70 practice areas who have attained a high degree of peer recognition and professional achievement. Each year only 2.5 percent of attorneys are named to the Rising Stars list.

On This Page

Get Your Free Case Evaluation

Fill out the form below and we’ll contact you within 24 hours.
// Shortcode to display the number of published posts in the same category as the current post function term_post_count_shortcode($atts) { $atts = shortcode_atts( array( 'id' => '', // optional term ID ), $atts, 'term_count' ); // If term ID is provided, use it if ( !empty($atts['id']) ) { $term_id = intval($atts['id']); } else { // No ID provided: get the first category of the current post global $post; if ( empty($post) ) return ''; $terms = get_the_terms( $post->ID, 'category' ); if ( empty($terms) || is_wp_error($terms) ) return ''; $term_id = intval($terms[0]->term_id); // take the first category } // Query only published posts in this category $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => -1, 'tax_query' => array( array( 'taxonomy' => 'category', 'field' => 'term_id', 'terms' => $term_id, ), ), 'fields' => 'ids', ); $posts = get_posts($args); return count($posts); } add_shortcode('term_count', 'term_post_count_shortcode');