1

次のように、content.phpページにサムネイルを生成するテンプレートを使用します。

<article <?php post_class('single-entry clearfix'); ?>>  
<?php
// Test if post has a featured image
if( has_post_thumbnail() ) { 
    // Get resize and show featured image : refer to functions/img_defaults.php for default values
    $wpex_entry_img = aq_resize( wp_get_attachment_url( get_post_thumbnail_id(), 'full' ),  wpex_img( 'blog_entry_width' ), wpex_img( 'blog_entry_height' ), wpex_img( 'blog_entry_crop' ) );
?>
    <div class="single-entry-thumbnail">
        <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img src="<?php echo $wpex_entry_img; ?>" alt="<?php echo the_title(); ?>" /></a>
    </div><!-- /single-entry-thumbnail -->
<?php } ?>
<div class="entry-text clearfix">
    <header>
        <h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
    </header>
</div><!-- /entry-text -->

私はWordpressとphpから始めたばかりで、これにパラメータを追加したいので、カテゴリ'showcase'の投稿のみが表示されます。誰かアイデア?

4

1 に答える 1

0

in_category()関数を使用して、その投稿がそれに属していることをテストできます。

if ( in_category( 'showcase' ) ) {
    ...
}

in_category()ドキュメント-http: //codex.wordpress.org/Function_Reference/in_category

于 2012-11-27T16:37:14.217 に答える