xxxxxxxxxx
//default
$image_url = wp_get_attachment_url(1234);
// change if post have feature image
if (has_post_thumbnail($recent_post['ID'])) {
$image_url = wp_get_attachment_url(get_post_thumbnail_id($recent_post['ID']), '');
}
xxxxxxxxxx
<?php if (has_post_thumbnail( $post->ID ) ): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
<div id="custom-bg" style="background-image: url('<?php echo $image[0]; ?>')">
</div>
<?php endif; ?>
xxxxxxxxxx
$img_url = wp_get_attachment_image_url(get_post_thumbnail_id(get_the_ID()), 'full');
<img src="<?PHP echo $img_url?> ">
xxxxxxxxxx
<?php
$args = array(
'posts_per_page' => -1,
'post_type' => 'our-work',
);
$the_query = new WP_Query( $args );
if($the_query->have_posts() ) :
while ( $the_query->have_posts() ) :
$the_query->the_post();
// for featured image
echo get_the_post_thumbnail_url();
// OR
the_post_thumbnail_url();
endwhile;
wp_reset_postdata();
else:
endif;
?>
xxxxxxxxxx
<?php if(has_post_thumbnail()){
the_post_thumnbail('cstm_name', array( 'class' => 'class1 class2' ))
} else { ?>
<img class="card-img-top" src="http://placehold.it/750x300" alt="Card image cap" class="img-responsive">
<?php } ?>
xxxxxxxxxx
<?php
$args = array(
'posts_per_page' => -1,
'post_type' => 'our-work',
);
$the_query = new WP_Query( $args );
if($the_query->have_posts() ) :
while ( $the_query->have_posts() ) :
$the_query->the_post();
// for featured image
echo get_the_post_thumbnail();
// OR
the_post_thumbnail();
endwhile;
wp_reset_postdata();
else:
endif;
?>
xxxxxxxxxx
$url = "http://url-of-the-image.jpg";
$post_id = [post id]
$desc = "image description";
$image = media_sideload_image( $url, $post_id, $desc,'id' );
set_post_thumbnail( $post_id, $image );