我有一个难题。根据帖子格式加载不同标题的最佳方式是什么?我想我可以在标题周围加载另一个循环,但我注意到该站点确实变慢了。这是我索引中的代码。php:
<?php get_header();?>
<section id="block">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
<?php endwhile; endif; ?>
</section>
<?php get_footer();?>
谢谢
最合适的回答,由SO网友:Z. Zlatev 整理而成
如果你有header-video.php
用于video post格式。
代替get_header();
具有get_header(get_post_format());
在你的常规singular.php
或index.php
. 如果WP可以找到header-video.php
它将加载它,否则它将自动回退到header.php
.