我希望此查询仅显示其中包含的帖子和来自geodir_special_offers的文章 echo
<?php
global $post;
$args = array(
'posts_per_page' => 4 , 'post_type' => 'gd_arts',);
$lastposts = get_posts( $args ); foreach ( $lastposts as $post ) : setup_postdata( $post ); ?>
<h2><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></h2>
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail(array(486,226));
} ?>
<php echo $post->geodir_special_offers; ?>
<?php endforeach;
wp_reset_postdata();
?>
我对WP查询很新,所以请耐心等待。
如果不是100%的结构,请提前抱歉。
答案 0 :(得分:0)
试试这个!它会在回显内容之前检查是否设置了特别优惠。希望这就是你要找的东西。
<?php
global $post;
$args = array(
'posts_per_page' => 4 , 'post_type' => 'gd_arts',);
$lastposts = get_posts( $args );
foreach ( $lastposts as $post ) {?>
<?php if(strlen ($post->geodir_special_offers) > 5){ ?>
<h2><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></h2>
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail(array(486,226));
}
}
}
wp_reset_postdata();
?>