Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在“portfolio-loop.php”文件中有这个片段。我正在使用 get_template_part 在首页和其他页面上显示循环。
我在循环中有这个:
<?php if( !is_home() || !is_front_page() ) : ?> <p><?php the_time('F Y'); ?></p> <?php endif; ?>
我似乎无法让它排除首页。可能是因为它在它自己的模板中吗?
你可能是说
if( !is_home() && !is_front_page() )
意味着你不在家而且你不在首页