Wordpress YouTube短代码不会嵌入网址

时间:2017-06-20 20:07:26

标签: php wordpress

我的目标是使用Wordress所述的YouTube短代码将三个YouTube视频彼此相邻。 https://en.support.wordpress.com/videos/youtube/请看这些图片,显示我在哪里使用短代码,我看到的结果,以及我用来执行短代码的php。 http://imgur.com/a/YX6pF

短代码(从support.wordpress.com复制粘贴)

[youtube https://www.youtube.com/watch?v=_Oh12ROTQCE ]

PHP

<?php
  if ( have_posts() ) {
    while ( have_posts() ) {
      the_post();
      do_shortcode(the_content());
      } // end while
    } // end if
    ?>

0 个答案:

没有答案