Answers for "how to set categories thumbnails images in wordpress"

PHP
1

wordpress featured image show

<?php echo the_post_thumbnail(); ?>
Posted by: Guest on July-09-2020
0

wordpress thumbnail image with picture tag html

<?php 
	// Get this attachment ID
	$attachment_id = get_post_thumbnail_id( $post_id );
	$image_large_src = wp_get_attachment_image_src( $attachment_id, 'large' );
?>

<picture>
	<!-- Large art direction resolutions -->
	<source media="(min-width: 50rem)"
		srcset="<?php echo wp_get_attachment_image_srcset( $attachment_id, 'large' ); ?>"
		sizes="(min-width: 60rem) 60rem, 100vw">

	<!-- Small art direction resolutions
Posted by: Guest on March-15-2021

Code answers related to "how to set categories thumbnails images in wordpress"

Browse Popular Code Answers by Language