方法1: query_postsを使用する方法 以下のコードをテンプレートファイルやテーマの関数ファイルに追加することで、スティッキーポストのみをクエリできます。
<?php
$args = array(
'post__in' => get_option( 'sticky_posts' ),
'ignore_sticky_posts' => 1
);
query_posts( $args );
?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- スティッキーポストの表示 -->
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>
このコードでは、get_option( 'sticky_posts' )
を使用してスティッキーポストのIDリストを取得し、ignore_sticky_posts
を1に設定して通常の投稿を無視します。その後、query_posts
を使用してスティッキーポストのみをクエリします。ループを使用してスティッキーポストを表示し、最後にwp_reset_query
を使用して元のクエリをリセットします。
方法2: WP_Queryを使用する方法
以下のコードは、WP_Query
クラスを使用してスティッキーポストのみをクエリする方法です。
<?php
$args = array(
'post__in' => get_option( 'sticky_posts' ),
'ignore_sticky_posts' => 1
);
$query = new WP_Query( $args );
?>
<?php if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
<!-- スティッキーポストの表示 -->
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<?php wp_reset_postdata(); ?>
このコードでは、get_option( 'sticky_posts' )
を使用してスティッキーポストのIDリストを取得し、ignore_sticky_posts
を1に設定して通常の投稿を無視します。WP_Query
を使用してスティッキーポストのみをクエリし、ループを使用してスティッキーポストを表示します。最後にwp_reset_postdata
を使用してポストデータをリセットします。
これらの方法を使用すると、WordPressでスティッキーポストのみをクエリできます。ご希望のコード例と解析方法を提供できましたか?