wordpress在标题上显示图像(缩略图)

时间:2014-08-05 16:12:57

标签: php wordpress loops

我正在努力修复某人wordpress网站,我在loop.php和特定页面的模板文件中遇到了这个奇怪的代码。我的目标是更改它以在标题中显示特色图像。我做了一些关于如何使用get_thumbnail语法输出特色图像的研究,我通常不会在wordpress的后端/ FTP中做很多事情所以谢谢你的帮助和耐心。

<?php 
/**
* @package WordPress
* @subpackage WP-Skeleton
*/
?>
</div>
<div id="primary">
<div id="content">
    **<?php the_post(); ?>
        <?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id(           get_the_ID('full') ), 'page-header' );
        $url = $thumb['0'];?>
        <div id="page-header" style="background-image:url('<?php echo $url; ?>');">**
        </div>
    <div style="clear"></div>
    <div class="container">
        <section class="sixteen columns alpha">
            <header class="entry-header">
                <h2 class="entry-title">Events</h2>
            </header>
            <div class="entry-content ">
                <?php while ( have_posts() ) : the_post(); ?> <!--  the Loop -->
                <article id="post-<?php the_ID(); ?>" class="event">
                  <div class="title">            
                     <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title('<h3>', '</h3>'); ?></a>  <!--Post titles-->
                  </div>
                    <div class="event-img"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('event-img'); ?></a></div>
                    <?php the_content("Continue reading " . the_title('', '', false)); ?> <!--The Content-->
                </article>
                <?php endwhile; ?><!--  End the Loop -->
            </div>
        </section>
    <div>
</div>  <!-- End two-thirds column -->
</div><!-- End Content -->

</diV>

1 个答案:

答案 0 :(得分:1)

如果要在标题内显示精选图像,请使用下面的代码。

<?php
    if(have_posts()) :
        while (have_posts()) : the_post();
            the_post_thumbnail();  
        endwhile;        
    endif;
?>