How to prepend text to the_content, but after img/shortcode

I finally settled on using a regex, with a limit of 1 so it only happens on the first paragraph:

add_filter('the_content', function($content)
{
    $content = preg_replace('/<p[^>]*>/', '$1Text from meta - ', $content, 1);
    return $content;
});

Leave a Comment