“WordPress Get Post Feled Image” Kod odpowiedzi

Uzyskaj wyróżniony adres URL obrazu w 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

WP Pobierz obraz funkcji

<?php
	echo get_the_post_thumbnail( $post_id, 'thumbnail' );
?>
Avenger

Zdobądź wizerunek Post WordPress według postu postu

<?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; ?>
Depressed Dolphin

WordPress Fontered Image Show

<?php echo the_post_thumbnail(); ?>
gtamborero

Uzyskaj wyróżniony obraz ID WordPress

get_post_thumbnail_id($post) 
Andrew Lautenbach

WordPress Get Post Feled Image

//default 
$image_url = wp_get_attachment_url(1234);
// change if post have feature image
if (has_post_thumbnail($recent_post['ID'])) {
	$image_url = wp_get_attachment_url(get_post_thumbnail_id($recent_post['ID']), '');
}
Ivan Cuaco

Odpowiedzi podobne do “WordPress Get Post Feled Image”

Pytania podobne do “WordPress Get Post Feled Image”

Więcej pokrewnych odpowiedzi na “WordPress Get Post Feled Image” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu