drmlxgmqn18198265 2016-05-24 21:14
浏览 235
已采纳

WordPress the_content()不显示图像(如果没有其他内容)

I build a custom theme for WordPress(4.4.2). I uses the standard built-in Editor to create posts. If I create a Post with, say, a headline and a paragraph AND an image, the content is shown (so is the image). But If I just type in a title and in the content area of the editor I leave JUST the image with no further text, it will not be shown on the website.

<?php if (have_posts()) : while (have_posts()) : the_post();?>
  <div class="container-fluid site-content content-area" role="main">
    <div class="container">
      <?php if (!empty_content($post->post_content)) :?>
      <div class="content row col-md-10 xcentered">

        <?php the_content(); ?>
      </div>
    <?php endif; ?>
    </div>
  </div>
<?php endwhile; endif; ?>

I also tried the code without the if statement, but the_content() does not display an image without any other content.

Everything but the div.container is rendered. And as soon as I add just a single character before/after the image title, character AND image are rendered.

Any suggestions where (else) I have to make changes? Why is an image not recognized "standalone"?

  • 写回答

1条回答 默认 最新

  • dro60731 2016-05-24 22:08
    关注

    The function 'empty_content' you are using, which you have provided in the comments on your question:

    function empty_content($str) { 
        return trim(str_replace('&nbsp;','',strip_tags($str))) == '';
    }
    

    When I put <img src="someimg.png"> into this function, it returns true, meaning your <div> is not rendered.

    This is exactly the behavior you are describing.

    Try to http://phpfiddle.org/ the following code:

    function empty_content($str) { 
        return trim(str_replace('&nbsp;','',strip_tags($str))) == '';
    }
    
    $only_img = '<img src="someimg.png">';
    $img_and_more = '<img src="someimg.png"><p>Some other stuff</p>';
    
    
    
    var_dump(empty_content($only_img));
    var_dump(empty_content($img_and_more));
    

    You will see that the $only_img variable dumps to true and the $img_and_more dumps to false.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 树莓派安卓APK系统签名
  • ¥15 maple软件,用solve求反函数出现rootof,怎么办?
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥15 state显示变量是字符串形式,但是仍然红色,无法引用,并显示类型不匹配
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果
  • ¥15 matlab图像高斯低通滤波