Answers for "get post category image by category id in wordpress"

PHP
4

get featured image post wordpress by post id

<?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; ?>
Posted by: Guest on August-30-2020
1

get category post in wordpress

echo '<p>'. get_the_category( $id )[0]->name .'</p>';
Posted by: Guest on October-18-2021

Code answers related to "get post category image by category id in wordpress"

Browse Popular Code Answers by Language