Skip to content

Instantly share code, notes, and snippets.

View iledcom's full-sized avatar

Konstantyn iledcom

View GitHub Profile
@iledcom
iledcom / WordPress get large image
Last active August 29, 2015 14:26
WordPress get large image
<img src="<?php
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large' );
echo $large_image_url[0]
?>""
alt="<?php the_title(); ?>" />
@iledcom
iledcom / WordPress get tags
Created August 1, 2015 13:00
WordPress get tags
?php
$tags = wp_get_post_tags($post->ID);
if ($tags){
foreach ($tags as $tag) {
echo '' . $tag->name;
}
}
?>