使用帖子的特色图像作为标题图像

时间:2011-03-25 作者:hakre

我在wordpress上有一个博客。com中,我使用了210主题。对于每个帖子,我可以设置一个特色图片。

在Wordpress上。com该图像随后显示在菜单上方的标题中。

我想买一台Wordpress也一样。组织设置。我该怎么做?

1 个回复
最合适的回答,由SO网友:Wyck 整理而成

我不确定我是否完全理解你的问题,哈克雷,但这里的代码显示了标题中的二十个十的特征图像。php。图像大小在函数中定义。php文件。

它还使用一个名为http://codex.wordpress.org/Function_Reference/get_header_image.

<?php
                    // Check if this is a post or page, if it has a thumbnail, and if it\'s a big one
                    if ( is_singular() && current_theme_supports( \'post-thumbnails\' ) &&
                            has_post_thumbnail( $post->ID ) &&
                            ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), \'post-thumbnail\' ) ) &&
                            $image[1] >= HEADER_IMAGE_WIDTH ) :
                        // Houston, we have a new header image!
                        echo get_the_post_thumbnail( $post->ID );
                    elseif ( get_header_image() ) : ?>
                        <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
                    <?php endif; ?>

结束

相关推荐