Wordpress <?php the_post_thumbnail( 'full' ); ?> without the img-tag

前端 未结 2 922
猫巷女王i
猫巷女王i 2021-01-12 07:12

I have noticed that using the post_thumbnail() function in Wordpress inserts the image including the img-tag. Is there a way to have it insert ONLY the src of that image?

2条回答
  •  不知归路
    2021-01-12 07:58

    Found answer. Thanks anyway.

    ID), array(320,240), false, '' );
    echo $src[0];
    ?>
    

提交回复
热议问题