“WordPress bekommen Post Thumbnail URL” Code-Antworten

Holen Sie sich Bild -URL

echo get_the_post_thumbnail_url();
Xenophobic Xenomorph

WordPress bekommen Post Thumbnail URL

<?php 
  // ALL parameters are optional. Not needed if you are on WP LOOP
  echo get_the_post_thumbnail_url( $the_query->ID, array( 500, 400) ); ?>
gtamborero

WordPress Thumbnail URL

<img src='<?php the_post_thumbnail_url(); ?>'>
gtamborero

Holen Sie sich die URL der Vorschaubild

<?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; ?>
Thoughtless Trout

Ähnliche Antworten wie “WordPress bekommen Post Thumbnail URL”

Fragen ähnlich wie “WordPress bekommen Post Thumbnail URL”

Weitere verwandte Antworten zu “WordPress bekommen Post Thumbnail URL” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen