ページIDで注目の画像のURLを取得する
2 回答
- 投票
-
- 2012-12-22
何か試しましたか?試したことを共有することは常に役に立ちます.
$url = wp_get_attachment_url( get_post_thumbnail_id($post_id) );
または、画像サイズごとに画像を取得する場合.
$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
-
実際、これは間違っています-パラメータとしてサイズを渡すことができることを示唆していますが、それは正確ではありません.どちらの関数もパラメーターを受け入れません.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
-
最近では、 `wp_get_attachment_image_src()`の代わりに `wp_get_attachment_image_url()`を使用できるため、その `$ 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
Wordpress 4.4.0以降、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' );
-
最後に、それはその頃でした.Finally, it was about the time.
- 1
- 2017-01-17
- prosti
WordPress3.4.1を使用しています.ページの注目画像を表示する必要があります.特定のページIDで注目の画像のURLを取得するにはどうすればよいですか.何か助けはありますか?