3

では、画像に合わせてタイトルや抜粋を表示したいのですが?どうやってやるの?

<div id="treia_box" style="height:350px; width:350px;"> 
    <?php
    add_filter('excerpt_length', 'new_excerpt_length');
    global $post;
    $args = array( 'numberposts' => 3, 'category' => 29 );
    $myposts = get_posts( $args );
    foreach( $myposts as $post ) :  setup_postdata($post); ?>
    <h2><a href="<?php the_permalink(); ?>"<?php the_title('<h7>', '<h7>'); ?></a></h2>
    <?php $size = array(75,75);
echo get_the_post_thumbnail($post_id, $size)?>
    <h6><?php the_excerpt(); ?></h6> 
    <?php endforeach; ?>    
</div>
4

1 に答える 1

4

get_the_post_thumbnail($post_id, $size)正しいでしょうが、

1 - $size を指定する必要があります。例: "large" 、"thumbnail" "my_custom_size"

get_the_post_thumbnail($id, 'thumbnail');     // Thumbnail
get_the_post_thumbnail($id, 'medium');        // Medium resolution
get_the_post_thumbnail($id, 'large');         // Large resolution

get_the_post_thumbnail($id, array(100,100) ); // Other resolutions

2 - ユーザー (あなた) が投稿のサムネイルを定義した場合にのみ機能します (特集 - 投稿作成時の画像)

于 2012-06-15T12:43:35.420 に答える