问题是,代码可以工作,但当我使一篇文章变得有粘性时,它一开始不会出现。
代码的功能:它只显示有缩略图或幻灯片图像的帖子。
<?php
$args = array( \'numberposts\' => 5,
\'meta_query\' => array(
\'relation\' => \'OR\',
array(
\'key\' => \'_thumbnail_id\',
\'compare\' => \'!=\',
\'value\' => \'\'
),
array(
\'key\' => \'slideshow_image\',
\'compare\' => \'!=\',
\'value\' => \'\'
)
)
);
$my_posts = get_posts( $args );
global $post;
foreach( $my_posts as $post ) : setup_postdata($post);
?>
<?php the_post_thumbnail(\'thumb-small\'); ?>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
<?php
endforeach;
wp_reset_postdata();
?>