如何区分搜索结果中的帖子和页面?
我需要做的是展示the_time
div用于帖子,但不用于页面,因为这与内容无关。
有功能吗?<?php if (!is_page()) }
在下面的循环中没有帮助。
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
//prevent this div from displaying for pages:
<div class="searchdate"><?php the_time(\'F jS, Y\') ?></div>
<?php the_excerpt(); ?>
<?php endwhile; ?><?php else : ?><?php endif; ?>