我想说的是将它们作为模板部分添加到内容-[名称]中。php。例如,在page.php
您可以有如下内容:
<?php while ( have_posts() ) : the_post(); ?>
<?php if (is_page( \'home\' ) ){
get_template_part( \'content\', \'benefits\' );
} elseif (is_page( \'Contact\' ) ){
get_template_part( \'content\', \'contact\' );
}
}
get_template_part( \'content\', \'popup\' ); ?>
<?php endwhile; // end of the loop. ?>
这似乎更有意义,因为它毕竟是满足的。