对于content.php
在WordPress中,这就是为什么你在抄本中找不到。一些主题使用它来呈现帖子内容。
所以不是…
while ( have_posts() )
{
the_post();
?><li <?php post_class(); ?>>
<?php
the_title( \'<h2><a href="\' . get_permalink() . \'">\', \'</a></h2>\' );
the_excerpt();
wp_link_pages();
?></li>
<?php
}
…他们使用…
while ( have_posts() )
{
the_post();
get_template_part( \'content\', get_post_format() );
?></li>
<?php
}
但您可以使用任何名称,它仍然有效。Jetpack遵循WordPress最后一个默认主题的约定;这些正在使用
content.php
.