我在静态页面上有不同的内容,并在我的WP网站上发布。在页面上查看搜索结果中的元是不可取的,但在我的帖子中是重要的。Meta,我指的是关于作者的信息,以及搜索结果中的日期。
我已经创建了自定义帖子搜索。php。但我不知道,如何只为post in结果显示元信息。否,用于使用这部分代码显示meta i:
<div class="postmeta-primary">
<span class="meta_date"><?php the_time($theme->get_option(\'dateformat\')); ?></span>
<span class="meta_author"><?php the_author(); ?></span>
<?php if(comments_open( get_the_ID() )) {
?> <span class="meta_comments"><?php comments_popup_link( __( \'No comments\', \'themater\' ), __( \'1 Comment\', \'themater\' ), __( \'% Comments\', \'themater\' ) ); ?></span><?php
}?>
</div>
我只是在想一些“如果”。例如,如果its\\u post然后执行代码(我在上面发布的代码)
谢谢你的回答
SO网友:streng
好的,我找到了有效的解决方案。也许再见会对某人有所帮助。
<div class="postmeta-primary">
<?php if(get_post_type() == \'post\'): {
?><span class="meta_date"><?php the_time($theme->get_option(\'dateformat\')); ?></span>
<span class="meta_author"><?php the_author(); ?></span><?php
}?>
<?php endif; ?>
<?php if(comments_open( get_the_ID() )) {
?> <span class="meta_comments"><?php comments_popup_link( __( \'No comments\', \'themater\' ), __( \'1 Comment\', \'themater\' ), __( \'% Comments\', \'themater\' ) ); ?></span><?php
}?>
</div>