campusboy87
3/28/2018 - 5:46 PM

Replace links to img for WordPress post content. Sanks for @soulseekah https://codeseekah.com/

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 );
}