第21期带有静态首页的帖子页面上的自定义页眉图像和内容

时间:2013-11-15 作者:Chowlett

我是Wordpress的新手,如果我错过了一些明显的东西,很抱歉。

我有一个网站使用(一个当地孩子的)twentyeleven主题。我发现,如果我在页面和帖子上设置特色图片,那么该图片将替换标题图片;这很好。

但是,如果我自定义主题以显示静态首页,请指定另一个页面(recent-news, 说)作为我的帖子页面,并在recent-news, 然后recent-news 不会将其显示为自定义标题图像,而是显示211个随机图像。我怎样才能解决这个问题?

另外,我不知道是否相关,但我在recent-news 页面未显示;它唯一显示的内容是帖子的摘要。

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

如果使用静态首页,则贴子页的ID为get_option(\'page_for_posts\').

尝试并替换此部分:

            <?php
            /*
             * The header image.
             * Check if this is a post or page, if it has a thumbnail, and if it\'s a big one
             */
            if ( is_singular() && has_post_thumbnail( $post->ID ) &&
                    ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) ) ) &&
                    $image[1] >= $header_image_width ) :
                // Houston, we have a new header image!
                echo get_the_post_thumbnail( $post->ID, \'post-thumbnail\' );
比如:

            <?php //edited to show the selected featured image if a static page is selected as posts page
            // The header image
            // Check if this is a post or page, if it has a thumbnail, and if it\'s a big one
            if( is_singular() ) $post_id = $post->ID;
            elseif ( is_home() && get_option(\'page_for_posts\') ) $post_id = get_option(\'page_for_posts\');
            if ( ( is_singular() || is_home() && get_option(\'page_for_posts\') ) &&
                    has_post_thumbnail( $post_id ) &&
                    ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post_id ), array( $header_image_width, $header_image_width ) ) ) &&
                    $image[1] >= $header_image_width ) :
                // Houston, we have a new header image!
                echo get_the_post_thumbnail( $post_id, \'post-thumbnail\' );
(wp3.7.1中未测试)

但是我在最近的新闻页面上的任何内容都没有显示出来;它唯一显示的内容是帖子摘要

这就是posts页面与静态首页一起设置时的工作方式,因为它使用索引模板-http://codex.wordpress.org/Creating_a_Static_Front_Page

结束

相关推荐

ADD_THEME_SUPPORT(‘CUSTOM-HEADER’)不在仪表板中添加选项菜单

我正在根据工具箱主题从头开始写一个新主题。我的WP安装是开箱即用的。我添加了add\\u theme\\u支持(“custom-header”);我的职能。php文件,但“标题”选项屏幕不会显示在仪表板中。如果我访问该站点,我可以在顶部的工具栏中看到它,但不能在仪表板中看到它。我错过什么了吗?