Answers for "wordpress print img tag from url"

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
1

img src php wordpress

/*Va directement dans le repertoire du theme parent puis dossier img*/
src="<?php bloginfo('template_url'); ?>/imag/chat.png"
Posted by: Guest on November-21-2020

Browse Popular Code Answers by Language