使用特色图像的某些类别的年份档案

时间:2012-01-29 作者:PlanetPhillip

我知道这应该很容易做到,但我似乎无法理解。

首先,我有一个类别,有一些子类别。我想有一个页面,显示所有的职位在那一年,从这些类别内只使用他们的特色图片。

但是,我还没有为所有帖子添加特色图片,如果没有特色图片,我希望它默认为每个类别设置图片。

此外,我还想有职位名称和出版日期作为链接标题。

抱歉这么苛刻。

我快到了。我可以显示带有我想要的链接和属性的特色图像,但我似乎无法使回退图像正常工作。这是我的密码。我知道这一定是一个简单的基本错误。我需要添加更多的其他语句。

<?php query_posts(\'cat=81&year=2011\'); ?>
                    <?php while (have_posts()) : the_post(); ?>
                        <?php if ( has_post_thumbnail()) ; {
                        <a href="<?php the_permalink(); ?>"><?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );?><img src="<?php echo $url; ?>" title="<?php the_title_attribute(); ?> <?php the_time(\'jS F Y\') ?>" height="90" width="180" /></a>;
                        }
                        else if(in_category(91))
                        {
                        <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?> <?php the_time(\'jS F Y\') ?>" ><img src="/media/admin/hl1-thumbnail.jpg"></a>;

                        <?php endif; ?>
                    <?php endwhile; ?>
任何帮助都将不胜感激。

TIA公司

1 个回复
结束

相关推荐

显示Archives.php中的所有自定义帖子类型

我该怎么做?archive.php 只有以下内容:wp_get_archives(\'type=monthly\'); 以及wp_get_archives() 没有显示所有帖子类型的参数。我也认为archive-[post_type].php 不是我要找的,因为我希望所有帖子类型都显示在一个归档页面中。谢谢W