Answers for "add featured image in wordpress"

PHP
1

get featured image url in wordpress

if ( has_post_thumbnail()) {
   $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
   echo '<a href="' . $large_image_url[0] . '">';
   the_post_thumbnail('thumbnail');
   echo '</a>';
}
Posted by: Guest on January-05-2021
0

wordpress featured image show

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

add featured image

function fn_add_featured(){
   add_theme_support( 'post-thumbnails' );
   add_image_size( 'post-imge', 730, 380 );
}

add_action('after_setup_theme','fn_add_featured');
Posted by: Guest on May-07-2020

Code answers related to "add featured image in wordpress"

Browse Popular Code Answers by Language