开机自检图像不显示在首页上

时间:2015-06-29 作者:Mario

我没有收到任何错误,但帖子图像没有显示在首页,所有其他页面都正确显示了图像。我怎样才能解决这个问题?这里是网站

首页设置为显示最近的帖子。

这是索引。php文件

<?php get_header(); ?>

<?php
    // get options
    $pinthis_infinite_scroll = get_option(\'pbpanel_infinite_scroll\');
?>

<section id="content">
    <div class="container fluid">
        <?php if (is_category()) { ?>
            <div class="category-title">
                <div class="container">
                    <h3 class="title-3"><?php single_cat_title(); ?></h3>
                    <?php if (category_description()) { ?><div class="description"><?php echo category_description(); ?></div><?php } ?>
                </div>
            </div>
        <?php } ?>
        <?php if ( have_posts() ) { ?>
        <div class="boxcontainer">
            <?php while ( have_posts() ) { the_post(); ?>
                <?php get_template_part(\'pinbox\', get_post_format()); ?>
            <?php } ?>
        </div>
            <?php
                ob_start();
                posts_nav_link(\' \', __(\'Previous Page\', \'pinthis\'), __(\'Next Page\', \'pinthis\'));
                $pinthis_posts_nav_link = ob_get_clean();
            ?>
            <?php if(strlen($pinthis_posts_nav_link) > 0) { ?>
                <div class="container">
                    <div class="posts-navigation clearfix <?php if ($pinthis_infinite_scroll == 1) { ?>hide<?php } ?>"><?php echo $pinthis_posts_nav_link;  ?></div>
                </div>
            <?php } ?>
        <?php } else { ?>
        <div class="notification-body">
            <p class="notification tcenter"><?php echo __(\'No posts found.\', \'pinthis\'); ?></p>
        </div>
        <?php } ?>
    </div>
</section>

<?php get_footer(); ?>

2 个回复
SO网友:s_ha_dum

生成图像链接的部分已断开。您没有获得有效的src 中的属性title 标签结果是:

<p class="thumb">
    <a href="http://paper-backgrounds.com/red-grunge-concrete-texture-3/" title="Red Grunge Concrete Texture">
    <img src="undefined" alt="Red Grunge Concrete Texture" height="132" width="236">
    </a>
</p>
没有这个src 无法加载图像的属性。

由于您没有发布生成HTML的代码,我无法确切说明如何修复它,但如果您发布该代码(作为对问题的编辑),我很确定这是一个很容易修复的问题。

SO网友:Mahavar Hitesh

Use This code.

if (wp_get_attachment_url(get_post_thumbnail_id($post->ID))) {
    $thumbnail_url = wp_get_attachment_url(get_post_thumbnail_id($post->ID));
    $data .= \'<img alt="blog-img" title="blog-img" class="img-responsive" src="\' . $thumbnail_url . \'"/>\';
}
结束

相关推荐

为什么不在插件中包含对/wp-admin/admin.php的引用

联系表单7最近推出了一个更新,导致其他插件出现一些冲突。WPCF7的作者解释说,这是因为插件包括对wp-admin/admin.php 在他们的脚本中,你不应该在插件中这样做。Takayuki Miyoshi 解释它here 但我不确定我是否完全理解为什么这会引起任何问题,或者这与打电话给say有什么不同wp-load.php.有人能解释一下为什么建议不要加载wp-admin/admin.php 在你的插件中,它是如何引起问题的?