Created
December 19, 2013 12:03
-
-
Save 16am/8038171 to your computer and use it in GitHub Desktop.
Source featured image and timthumb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (has_post_thumbnail()) { | |
$image_url = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'large'); | |
$tempalte_path = get_template_directory_uri(); | |
echo '<img src="' . $tempalte_path . '/timthumb.php?src=' . $image_url[0] . '&h=500&w=1000&zc=1" alt="' . the_title_attribute('echo=0') . '" >'; | |
echo '</a>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment