2016-08-24 42 views
0

我是新來的wordpress technology.I從我的數據庫獲取後,現在我想在我的posts.Here顯示視頻是我的代碼如何在我的信息模板上顯示視頻?

<?php while(have_posts()): 
     the_post(); 
?> 
<?php the_content()?> 
<?php endif;?> 

但影片沒有在我的posts.why展示? 我想在使用excert中顯示它()

+0

你如何上傳使用一些插件或通過媒體庫本身:) –

+0

,或者只是使用一些嵌入代碼從YouTube或其他來源的視頻? –

回答

0

你可以嘗試這樣。

您的主題可能在其index.php模板文件中使用<?php the_excerpt();?>而不是<?php the_content();?>。嘗試編輯index.php並用<?php the_content();?>替換<?php the_excerpt();?>或將您的視頻添加到每篇文章的選項摘錄字段。

<?php while(have_posts()): the_post(); ?> 
<?php the_excerpt(); ?> 
<?php endif;?> 
相關問題