Wordpress:与is_home()和is_front_page()有问题

时间:2013-05-16 02:38:43

标签: php wordpress

我在“portfolio-loop.php”文件中有这个片段。我正在使用get_template_part在首页和其他页面上显示循环。

我在循环中有这个:

<?php if( !is_home() || !is_front_page() ) : ?>
  <p><?php the_time('F Y'); ?></p>
<?php endif; ?>

我似乎无法排除首页。可能因为它在自己的模板中吗?

1 个答案:

答案 0 :(得分:1)

你可能意味着

if( !is_home() && !is_front_page() )

意味着你不在家而且你不在头版