“Holen Sie sich die Bild -URL in WordPress” 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

WordPress -Bildshow

<?php echo the_post_thumbnail(); ?>
gtamborero

Holen Sie sich die Bild -ID -WordPress

get_post_thumbnail_id($post) 
Andrew Lautenbach

Zeigen Sie das vorgestellte Bild in Post WordPress

<?php if(has_post_thumbnail()){
  the_post_thumnbail('cstm_name', array( 'class' => 'class1 class2' ))
} else { ?>
  <img class="card-img-top" src="http://placehold.it/750x300" alt="Card image cap" class="img-responsive">
<?php } ?>
Shy Seal

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

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

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen