投稿のアイキャッチ画像のサムネイルをウィジェットの 1 つに出力したいですか? Wordpress のループ内でそれを行うにはどうすればよいですか。バージョン 3.3.1 を使用しています
2163 次
1 に答える
1
あなたが使用することができます
<?php the_post_thumbnail(); ?>
または、wordpress のすべての html 出力ではなく、画像の src のみが必要な場合は、次のように使用します。
<?php echo get_the_post_thumbnail($page->ID, 'thumbnail'); ?>
参照:
http://codex.wordpress.org/Function_Reference/the_post_thumbnail
http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail
于 2012-03-17T18:28:47.740 に答える