web-dev-qa-db-ja.com

ホームページにのみ注目の投稿を表示する

コンテンツ/ループの前に、私はこれを一番上に掲載しました。問題は、それが家以外の他のページに現れることです。いくつかの解決策を試しましたが、隠すことはできません。どんな助けでも素晴らしいでしょう。

<?php
$args = array(
    'posts_per_page' => 1,
    'meta_key' => 'meta-checkbox',
    'meta_value' => 'yes'
);
$featured = new WP_Query($args);

if ($featured->have_posts()): while($featured->have_posts()): 
$featured->the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></h3>
<?php if (has_post_thumbnail()) : ?>

<figure> <a href="<?php the_permalink(); ?>"><?php 
the_post_thumbnail(); ?></a> </figure>
<p><?php the_excerpt();?></p>
<?php
endif;
endwhile; else:
endif;
?>
1
PauloP

Castiblanco の助けを借りて、私はこれを解決しました!

<?php
if( !is_paged() ) {

// Your code! 

}; ?>
0
PauloP