滑块不显示图像而是纯文本

时间:2015-11-01 17:16:55

标签: wordpress

我试图在Wordpress网站的不同博客页面中使用滑块,但它不起作用。当我使用它时,它只显示纯文本:[metaslider id = 4281]

似乎"博客条目"不了解Metaslider代码,因为我已经尝试过一个简单的页面,它可以工作。这是博客条目的代码(single.php)

    <?php get_header()?>
    <div id="maincontent">
        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); //The Loop?>
        <div <?php post_class()?>>

<?php if(has_tag()){the_tags( _e('Keywords','polaroids') . ': ', ', ');}?><br/>

<hr style="border: 0;border-bottom: 1px dashed #DDDDDD;"></br>

            <h1><?php the_title()?></h1>


             <div class="date"><?php /* the_date() */ ?></div>

             <div class="post-content"><? echo $post->post_content; /*php the_content()*/ ?></div> 

             <div class="postfooter">
             <?php wp_link_pages('before=Pages&after='); ?><br/>


             </div>

<hr style="border: 0;border-bottom: 1px dashed #DDDDDD;">
<div class="breadcrumbs"><?php the_category(', '); ?></div>
<hr style="border: 0;border-bottom: 1px dashed #DDDDDD;">


        </div>

1 个答案:

答案 0 :(得分:0)

我没有对此进行过测试,但我怀疑回显post_content可能会返回纯文本。不确定为什么the_content被注释掉但是尝试使用它。

所以不要这样:

<? echo $post->post_content; /*php the_content()*/ ?></div>

尝试使用:

<?php the_content(); ?>