How do I disable excerpts on blogs and website

You need to call remove_post_type_support() in your functions.php like that:

/**
 * Remove unwanted features.
 */
add_action('init', 'my_theme_remove_post_type_support');
function my_theme_remove_post_type_support() {
  remove_post_type_support('post', 'excerpt');
}

Leave a Comment