wordpress the_content not showing video -
i developing separate website , showing blogs using worpress.i have used following code display blogs.it shows textual contents video shows player bar , not click able.
i have checked themes index.php there no the_excerpt.
when check preview of post using wordpress admin shows video properly.
can me resolve this?
here code..
<?php global $more; $posts = get_posts('category=3&numberposts=10&order=asc&orderby=post_title'); foreach ($posts $post) : setup_postdata( $post ); ?> <?php $more = 1; ?> <?php the_date(); echo "<br />"; ?> <span style="color:#1c1644;font-size:1.3em !important;font-weight: bold;"> <?php the_title(); ?>  </span>    <div id="lol"><?php the_content(); ?> </div> <hr> <?php endforeach; ?> 
please try this
<?php global $more; $posts = get_posts('category=3&numberposts=10&order=asc&orderby=post_title');    foreach ($posts $post) :     setup_postdata( $post ); ?>      <?php $more = 1; ?>      <?php the_date(); echo "<br />"; ?>      <span style="color:#1c1644;font-size:1.3em !important;font-weight: bold;">         <?php echo the_title(); ?>       </span>         <div id="lol">         <?php echo the_content(); ?>      </div>      <hr>      <?php    endforeach; ?> 
Comments
Post a Comment