themes

Customize the WordPress Excerpt

Modify the default excerpt by replacing the “Read More” text with a custom ellipsis using the excerpt_more filter.

function qrs_excerpt_more($more) {
  global $post;
  remove_filter('excerpt_more', 'qrs_excerpt_more'); 
  return '...';
}
add_filter('excerpt_more','qrs_excerpt_more',11);

Leave a reply

Your email address will not be published. Required fields are marked *