0

特定のタグからの最新の投稿を表示するように、Wordpress のテーマを変更しようとしています。現在、最新の投稿全体を一覧表示しています。

使用するコードの一部を次に示します。

<?php
    if ( is_home() ) {
        $args=array(
            'showposts'=> (int) get_option('aggregate_homepage_posts'),
            'paged'=>$paged,
            'category__not_in' => (array) get_option('aggregate_exlcats_recent')
        );
        if (get_option('aggregate_duplicate') == 'false') {
            global $ids;
            $args['post__not_in'] = $ids;
        }
        query_posts($args);
        global $paged;
    }
    $i = 0;
?>
<?php 
    if (have_posts()) : while (have_posts()) : the_post(); ?>
    <?php
        $i++;
        $et_is_latest_post = ( $paged == 0 && ( is_home() && $i <= 2 ) ) || !is_home();
    ?>
        <div class="post entry clearfix<?php if ( $et_is_latest_post ) echo ' latest'; ?>">
            <?php
                $thumb = '';
                $width = $et_is_latest_post ? 170 : 67;
                $height = $et_is_latest_post ? 110 : 67;
                $classtext = 'post-thumb';
                $titletext = get_the_title();
                $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'Entry');
                $thumb = $thumbnail["thumb"];
            ?>

            <?php if($thumb <> '' && get_option('aggregate_thumbnails_index') == 'on') { ?>
                <div class="thumb thumbcont">
                    <a href="<?php the_permalink(); ?>">
                        <?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
                        <span class="overlay"></span>
                    </a>
<a class="thumb<?php $category = get_the_category(); echo $category[0]->category_nicename; ?>" href="<?php bloginfo('url'); ?>/<?php echo $category[0]->category_nicename; ?>"><?php echo $category[0]->cat_name; ?></a>
                </div>  <!-- end .post-thumbnail -->

            <?php } ?>

            <h3 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
            <?php get_template_part('includes/postinfo'); ?>

            <p class="postsummery">
            <?php
              $excerpt = get_the_excerpt();
              echo string_limit_words($excerpt,20);
            ?>
            </p>

            <a href="<?php the_permalink(); ?>" class="more"><span><?php esc_html_e('Read More','Aggregate'); ?></span></a>
        </div>  <!-- end .post-->
<?php endwhile; ?>
    <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
    else { ?>
         <?php get_template_part('includes/navigation','entry'); ?>
    <?php } ?>
<?php else : ?>
    <?php get_template_part('includes/no-results','entry'); ?>
<?php endif; wp_reset_query(); ?>

いくつかの調査を行っているときに、これを行う方法の詳細を見つけました: http://codex.wordpress.org/Template_Tags/get_posts

しかし、PHP コーディングに関する知識が非常に限られており、現在のコードが提供されている例でどのように機能するかを理解していないため、それを行う方法を見つけることができません。案内してもらえますか?

4

1 に答える 1

1

単純に 'tag'=> リストしたいタグを追加します。array( の 3 行目で、データベースを呼び出す get posts 関数に渡される引数を含む配列であるのはなぜですか?ここから選択できますhttp://codex.wordpress.org/Class_Reference/WP_Query#Tag_Parameters そして、完全なコードは次のようになります

   <?php
    if ( is_home() ) {
        $args=array(
            'showposts'=> (int) get_option('aggregate_homepage_posts'),
            'paged'=>$paged,
            'tag'=>"the tag u want shown",
            'category__not_in' => (array) get_option('aggregate_exlcats_recent')
        );
        if (get_option('aggregate_duplicate') == 'false') {
            global $ids;
            $args['post__not_in'] = $ids;
        }
        query_posts($args);
        global $paged;
    }
    $i = 0;
?>
<?php 
    if (have_posts()) : while (have_posts()) : the_post(); ?>
    <?php
        $i++;
        $et_is_latest_post = ( $paged == 0 && ( is_home() && $i <= 2 ) ) || !is_home();
    ?>
        <div class="post entry clearfix<?php if ( $et_is_latest_post ) echo ' latest'; ?>">
            <?php
                $thumb = '';
                $width = $et_is_latest_post ? 170 : 67;
                $height = $et_is_latest_post ? 110 : 67;
                $classtext = 'post-thumb';
                $titletext = get_the_title();
                $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'Entry');
                $thumb = $thumbnail["thumb"];
            ?>

            <?php if($thumb <> '' && get_option('aggregate_thumbnails_index') == 'on') { ?>
                <div class="thumb thumbcont">
                    <a href="<?php the_permalink(); ?>">
                        <?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
                        <span class="overlay"></span>
                    </a>
<a class="thumb<?php $category = get_the_category(); echo $category[0]->category_nicename; ?>" href="<?php bloginfo('url'); ?>/<?php echo $category[0]->category_nicename; ?>"><?php echo $category[0]->cat_name; ?></a>
                </div>  <!-- end .post-thumbnail -->

            <?php } ?>

            <h3 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
            <?php get_template_part('includes/postinfo'); ?>

            <p class="postsummery">
            <?php
              $excerpt = get_the_excerpt();
              echo string_limit_words($excerpt,20);
            ?>
            </p>

            <a href="<?php the_permalink(); ?>" class="more"><span><?php esc_html_e('Read More','Aggregate'); ?></span></a>
        </div>  <!-- end .post-->
<?php endwhile; ?>
    <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
    else { ?>
         <?php get_template_part('includes/navigation','entry'); ?>
    <?php } ?>
<?php else : ?>
    <?php get_template_part('includes/no-results','entry'); ?>
<?php endif; wp_reset_query(); ?>
于 2012-08-21T17:50:36.103 に答える