Replace links to img for WordPress post content. Sanks for @soulseekah https://codeseekah.com/
<?php
add_filter( 'the_content', 'replace_links_to_img' );
function replace_links_to_img( $content ) {
return preg_replace_callback( '#https?:\/\/fex\.net\/get\/[0-9]{12}\/[0-9]{9}#', function ( $match ) {
return "<img src=\"$match[0]\" />";
}, $content );
}