【问题标题】:WordPress Featured Image Caption is RepeatingWordPress 特色图片标题正在重复
【发布时间】:2014-01-06 21:18:15
【问题描述】:

我正在尝试创建一个包含特色图片标题的 div,该标题显示在滑块的中间。

为什么字幕循环播放?

链接:http://natashamcdiarmid.com/clients/JLP/wp/

应该是什么样子:http://natashamcdiarmid.com/clients/JLP/

<div class="slider">
    <?php query_posts( 'post_type=page' ); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <?php the_post_thumbnail('slider'); ?>
        <div class="caption-wrap"><?php the_post_thumbnail_caption(); ?></div>
    <?php endwhile; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    <?php endif; ?>
</div>

【问题讨论】:

    标签: wordpress caption


    【解决方案1】:

    我从来没有看到这个函数the_post_thumbnail_caption();,所以把它改成get_post( get_post_thumbnail_id() )-&gt;post_excerpt

    <div class="slider">
        <?php query_posts( 'post_type=page' ); ?>
        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
            <?php the_post_thumbnail('slider'); ?>
            <div class="caption-wrap"><?php echo get_post( get_post_thumbnail_id() )->post_excerpt ?></div>
        <?php endwhile; else: ?>
        <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
        <?php endif; ?>
    </div>
    

    【讨论】:

    • 它停止了循环,但现在它没有拉出标题。
    • @NatashaMcd :是的,因为我忘了添加回声,嗯,我认为我的回答对您有所帮助,我认为我应该投票 nn !!?哈哈
    【解决方案2】:
    Ok I figured it out:
    
    <div class="slider">
        <?php query_posts( 'post_type=page&page_id=48' ); ?>
        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
            <?php the_post_thumbnail('slider');
            echo '<div class="caption-wrap">' . get_post(get_post_thumbnail_id())->post_excerpt . '</div>'
            ; ?>
        <?php endwhile; else: ?>
        <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
        <?php endif; ?>
    </div>
    

    【讨论】:

      猜你喜欢
      • 2014-09-28
      • 2014-11-02
      • 2012-11-30
      • 2012-10-12
      • 2014-08-07
      • 1970-01-01
      • 2019-07-31
      • 1970-01-01
      • 2014-02-16
      相关资源
      最近更新 更多