“Holen Sie sich Bild -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

Holen Sie sich die Bild -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>';
}
Darkvent

Ähnliche Antworten wie “Holen Sie sich Bild -URL”

Fragen ähnlich wie “Holen Sie sich Bild -URL”

Weitere verwandte Antworten zu “Holen Sie sich Bild -URL” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen