add_filter('the_content', function ($content) { // Alleen op single blogposts if ( ! is_singular('post') ) { return $content; } // Alleen als het blok voorkomt if ( strpos($content, 'class="agent-info"') === false ) { return $content; } $author_url = 'https://www.squla.nl/blog/author/juf-shelby'; // Wrap de eerste agent-info block in een link $content = preg_replace( '/
(.*?)<\/div>/s', '
$1
', $content, 1 ); return $content; }, 20);