Child Custody

South Carolina judges consider what is in the child’s best interest when parents cannot agree during a custody battle. It is best for the child when parties can co-parent successfully. Barring abuse or other adverse situations, children benefit from a close, continuing relationship with both parties. However, if parents cannot agree, judges make decisions related to custody in South Carolina.

Morris Law Accident Injury Lawyers – Now Google Screened!

We are proud to announce that the Morris Law Accident Injury Lawyers is now a Google Screened business! What does this mean? Google Screened helps professional service firms build a trusted reputation online. Businesses with this badge go through extensive background and license checks. On Local Service listings, you will see the Google Screened icon […]

40 under 40

The National Trial Lawyers is a professional organization comprised of premier trial lawyers from across the country who have demonstrated exceptional qualifications in criminal defense or civil plaintiff law. The National Trial Lawyers provides accreditation to these distinguished attorneys, and also provides essential legal news, information, and continuing education to trial lawyers across the United States.

Super lawyers List

Jeff Morris, of Morris Law Accident Injury Lawyers, LLC, has been selected to the 2020 South Carolina Super Lawyers list. Less than five percent of the lawyers in the state of South Carolina are selected by Super Lawyers. Super Lawyers, part of Thomson Reuters, is a rating service of outstanding lawyers from more than 70 […]

// 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');