2012-11-05 3 views
1

왜 스티키 포스트 기능이 작동하지 않습니까? 게시물이있는 블로그에서 끈적 끈적하게 편집하여 메인 블로그 홈 페이지 상단에 표시되지만 아무 일도 일어나지 않습니다.스티키 페이지가 워드 프레스에서 작동하지 않습니다

이 사이트는 모든 사이트의 개별 블로그를 한 페이지에 결합하기 위해 "AHP Sitewide Recent Posts for WordPress"라는 플러그인을 사용합니다.

나는 코드를 살펴본 결과 끈적 거리는 것을 막는 원인을 찾아 냈다. 나는 내가 아는 모든 것을 거의 시도했다. 제발, 내 .php 지식은 기본입니다. 이것은 메인 블로그를 표시하는 코드입니다.

<?php 
/** 
* @package WordPress 
* @subpackage EHC_Theme 
*/ 


/* 
Template Name: 3-Column 
*/ 

     get_header(); ?> 

    <?php include(TEMPLATEPATH . "/sidebarHome.php"); ?> 

    <div id="content" class="narrowcolumn" role="main"> 
    <h3>Recent Posts</h3> 


    <?php ahp_recent_posts(10, 300, 127, 150, 4, '<div class="post">', '</div>', 1); ?> 


    <?php if (have_posts()) : ?> 

     <?php the_post(); the_content(); ?> 
     <!--<?php while (have_posts()) : the_post(); ?> 

      <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> 
      <?php echo get_blog_avatar(1,'32','mystery'); ?> 
       <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> 
       <p class="postmetadata"><small><?php the_date() ?>, <?php the_time() ?> By <?php the_author() ?></small></p> 

       <div class="entry"> 
        <?php the_excerpt('Read the rest of this entry &raquo;'); ?> 
       </div> 

       <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p> 
      </div> 

     <?php endwhile; ?> 

     --> 
       <div class="navigation"> 
      <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?>Next</div> 
      <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?>Prev</div> 
     </div> 



     <?php else : ?> 

     <h2 class="center">Not Found</h2> 
     <p class="center">Sorry, but you are looking for something that isn't here.</p> 
     <?php get_search_form(); ?> 

    <?php endif; ?> 

      </div> 

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

답변

0

ahp_recent_posts() 기능이 기본 루프 기능보다 우선 적용됩니다. 내용을 보지 않고 말하기는 어렵지만 주석을 달아서 디스플레이가 어떻게 보이는지보십시오.