How to remove a empty in wp caption shortcode?

It is not a good practice to override the WordPress native functionality. Instead you can hide the empty elements using CSS

p:empty  {
    display: none;
}

This will the empty elements.

Leave a Comment