更简单的方法是to use the category casting feature of Blubrry.
但是,您也可以创建自己的页面模板。结合the instructions you linked in your question, 使用Codex instructions for creating a custom page template.
创建一个名为template-podpress.php
, 并将其保存在主题的根目录中。在该文件中,添加以下内容:
/**
* Template Name: Podpress
*/
添加对页眉和页脚的调用:
/**
* Template Name: Podpress
*/
/* Header */
get_header();
/* Footer */
get_footer();
创建一个自定义查询,以查询包含播客的所有帖子(如文中所述,超出此问题的范围):
$podcast_query = new WP_Query( $args );
添加循环:
/**
* Template Name: Podpress
*/
/* Header */
get_header();
/* Loop */
if ( $podcast_query->have_posts() ) : while ( $podcast_query->have_posts() ) : $podcast_query->the_post();
endwhile; endif;
wp_reset_postdata();
/* Footer */
get_footer();
从链接的页面中添加Blubrry模板代码:
/**
* Template Name: Podpress
*/
/* Header */
get_header();
/* Loop */
if ( $podcast_query->have_posts() ) : while ( $podcast_query->have_posts() ) : $podcast_query->the_post();
/* Blubrry code */
<h2><?php the_title(); ?></h2>
<?php the_powerpress_content(); ?>
endwhile; endif;
wp_reset_postdata();
/* Footer */
get_footer();