0

我想在主页的博客条目中显示视频...(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

}

多谢。

*在创世纪框架上工作的主题。

4

2 回答 2

0

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

于 2014-10-09T21:57:06.300 回答
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' );
于 2014-10-10T06:14:23.420 回答