Can we use featured image as third party website image URL
There are plugins that could be used to achieve this. To do it manually add the following code to your theme’s function.php // Check if URL is image function url_is_image( $url ) { if ( ! filter_var( $url, FILTER_VALIDATE_URL ) ) { return FALSE; } $ext = array( ‘jpeg’, ‘jpg’, ‘gif’, ‘png’ ); $info = … Read more