Obtenir l'URL de l'image sélectionnée par identifiant de page
2 réponses
- votes
-
- 2012-12-22
Avez-vousessayé quelque chose?Ilesttoujours utile departager ce que vous avezessayé.
$url = wp_get_attachment_url( get_post_thumbnail_id($post_id) );
Ou si vous souhaitez obtenir l'imagepartaille d'image.
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post_id), 'thumbnail_size' ); $url = $src[0];
http://codex.wordpress.org/Function_Reference/get_post_thumbnail_id
http://codex.wordpress.org/Function_Reference/wp_get_attachment_url
http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src
Did you try anything? Its always helpful to share what you have tried.
$url = wp_get_attachment_url( get_post_thumbnail_id($post_id) );
Or if you want to get the image by image size.
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post_id), 'thumbnail_size' ); $url = $src[0];
http://codex.wordpress.org/Function_Reference/get_post_thumbnail_id
http://codex.wordpress.org/Function_Reference/wp_get_attachment_url
http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src
-
Enfait,c'estfaux - cela suggère que vouspouvezpasser latailleen tant queparamètre,mais cen'estpasprécis.Aucune des deuxfonctionsn'accepte deparamètre.Actually, this is wrong - it suggests that you can get pass the size as a parameter, but that's not accurate. Neither function accepts a parameter.
- 0
- 2014-06-20
- random_user_name
-
Vouspouvez utiliser `wp_get_attachment_image_url ()` au lieu de `wp_get_attachment_image_src ()` denosjours afin que vousn'ayezpas àfaire cettepartie `$ src [0]`.You can use `wp_get_attachment_image_url()` instead of `wp_get_attachment_image_src()` nowadays so you don't have to do that `$src[0]` part.
- 0
- 2017-01-17
- swissspidy
-
- 2017-01-17
Depuis Wordpress 4.4.0,nouspouvons utiliser get_the_post_thumbnail_url () :
$url = get_the_post_thumbnail_url( $post_id, 'thumbnail' );
As of Wordpress 4.4.0, we can use get_the_post_thumbnail_url():
$url = get_the_post_thumbnail_url( $post_id, 'thumbnail' );
-
Enfin,c'était àpeuprès lemoment.Finally, it was about the time.
- 1
- 2017-01-17
- prosti
J'utilise WordPress 3.4.1.J'aibesoin d'afficher l'image sélectionnée d'unepage.Commentpuis-je obtenir l'URL de l'image sélectionnéepar ID depageparticulier.Avez-vous de l'aide?