2011-10-13 83 views
0

我在我正在處理的網站上遇到問題。我將精選圖片設置爲所有頁面上邊欄的一部分(即關於我們,我們做什麼等),但該圖片未顯示在具有博客文章的頁面上。以下是博客模板頁面的代碼:精選圖像沒有出現在博客頁面上的側邊欄

<?php 
/** 
* Template Name: Blog page 
* 
* @package WordPress 
* @subpackage SPS 
*/ 
?> 

<?php get_header(); ?> 

    <div id="firstSection"> 
    <?php query_posts('post_type=post'); ?> 
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 

    <h1 class="blog-title"><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h1> 
    <div class="meta"><?php _e('Posted'); ?>&nbsp;<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"> 
    <?php the_date('','',''); ?></a>&nbsp;<?php _e('by'); ?>&nbsp;<?php the_author(); ?>.&nbsp; 
    <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> 
    <span class="edit-link"><?php edit_post_link(__('[Edit]')); ?></span> 
</div> 
<div> 
    <p class="blog-text"><?php the_excerpt(__('(more...)')); ?></p> 
</div> 
    <?php endwhile; ?> 
    <?php else: ?> 
<p>Sorry, no posts matched your criteria.</p> 
     <?php endif; ?> 
    <?php posts_nav_link(); ?> 
    </div> 

<?php get_sidebar(); ?>  
<?php get_footer(); ?> 

有我在代碼中忽略的東西,或者我要對錯誤的方式?任何幫助將不勝感激。

問候, Dalogi

回答