Top
Home

Path to Default Thumbnail

In case you need the path to the default thumbnail



<?php
//Get the Thumbnail URL
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 720,405 ), false, '' );
echo $src[0];
?>