我是wordpress技术的新手。我从我的数据库发帖,现在我想在我的帖子中显示视频。这是我的代码
<?php while(have_posts()):
the_post();
?>
<?php the_content()?>
<?php endif;?>
但视频没有显示在我的帖子中。为什么? 我想在使用excert()
时显示它答案 0 :(得分:0)
你可以这样试试。
您的主题可能在其index.php模板文件中使用<?php the_excerpt();?>
而不是<?php the_content();?>
。尝试编辑index.php并将<?php the_excerpt();?>
替换为<?php the_content();?>
。 或者将您的视频添加到每个帖子上的选项摘录字段。
<?php while(have_posts()): the_post(); ?>
<?php the_excerpt(); ?>
<?php endif;?>