PowerPress的Genesis页面模板

时间:2013-02-16 作者:user27582

我想创建一个模板,在带有powerpress播放器和链接的归档页面中显示播客。

Powerpess在本页讨论了这一点http://help.blubrry.com/blubrry-powerpress/customizing-with-your-wordpress-theme/

我已经看过了关于构建genesis模板的各种页面。

但归根结底,我对php的了解还不够,无法让它正常工作(经过多次尝试)

有人能告诉我如何将powerpress player和链接合并到模板中吗?

1 个回复
SO网友:Chip Bennett

更简单的方法是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();        

结束

相关推荐

PowerPress的Genesis页面模板 - 小码农CODE - 行之有效找到问题解决它

PowerPress的Genesis页面模板

时间:2013-02-16 作者:user27582

我想创建一个模板,在带有powerpress播放器和链接的归档页面中显示播客。

Powerpess在本页讨论了这一点http://help.blubrry.com/blubrry-powerpress/customizing-with-your-wordpress-theme/

我已经看过了关于构建genesis模板的各种页面。

但归根结底,我对php的了解还不够,无法让它正常工作(经过多次尝试)

有人能告诉我如何将powerpress player和链接合并到模板中吗?

1 个回复
SO网友:Chip Bennett

更简单的方法是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();        

相关推荐