wordpress:修改博客条目

时间:2014-10-09 20:54:15

标签: wordpress loops genesis

我想在主页的博客条目中显示视频...(tzahirozental.co.il) 由于某种原因,它忽略了帖子中的视频,只显示博客条目中的文字。 我知道我需要在loops.php中更改一些过滤器,但我不知道是什么。

function genesis_legacy_loop() {

global $loop_counter;

$loop_counter = 0;

if ( have_posts() ) : while ( have_posts() ) : the_post();

    do_action( 'genesis_before_post' );

    printf( '<div class="%s">', join( ' ', get_post_class() ) );

        do_action( 'genesis_before_post_title' );
        do_action( 'genesis_post_title' );
        do_action( 'genesis_after_post_title' );

        do_action( 'genesis_before_post_content' );
        echo '<div class="entry-content">';
            do_action( 'genesis_post_content' );
        echo '</div>'; //* end .entry-content
        do_action( 'genesis_after_post_content' );

    echo '</div>'; //* end .entry

    do_action( 'genesis_after_post' );
    $loop_counter++;

endwhile; //* end of one post
    do_action( 'genesis_after_endwhile' );

else : //* if no posts exist
    do_action( 'genesis_loop_else' );
endif; //* end loop

}

非常感谢。

*关于Genesis Framework的主题。

2 个答案:

答案 0 :(得分:0)

视频来自哪里?从帖子的内容?我认为您应该在文件中搜索genesis_post_content并查看此操作挂钩的位置。

答案 1 :(得分:0)

请在主题的functions.php文件中加入以下代码,以便为您的网站添加帖子格式。

add_theme_support( 'post-formats', array(
    'aside',
    'audio',
    'chat',
    'gallery',
    'image',
    'link',
    'quote',
    'status',
    'video'
) );

还包括以下内容以添加帖子格式图像。

add_theme_support( 'genesis-post-format-images' );