我重新发布了同样的问题,但我更好地定义了这些问题。
基本上,我试图限制出现在我的索引页面上的文章数量 - 但是,我似乎设法破坏了我创建的任何 CATEGORY 页面。
例如,如果您访问http://www.invisiblejungle.com,则从“广播节目”类别中提取的“近期帖子”部分显示得很好。
但是,如果您在导航栏中单击 Radio Shows,它是一个类别,它会将侧边栏小部件扔到页面底部,并扭曲每篇单独的文章。
编辑:
我发现当它检索帖子时,问题肯定出在 loop.php 中。
<?php
/**
* The loop for displaying multiple posts (blog, search, categories, tags, etc).
*
* @package WordPress
* @subpackage Debut
* @since Debut 2.0
*
*/
?>
<?php if( have_posts() ) : ?>
<?php
/**
* Page Header
*
*/
locate_template( 'includes/page-header.php', true ); ?>
<?php while( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'entry' ) ?>>
<?php
/**
* Entry Thumbnail
*
*/
locate_template( 'includes/entry-thumbnail.php', true, false ); ?>
<?php
/**
* Entry Header
*
*/
locate_template( 'includes/entry-header.php', true, false ); ?>
<?php
/**
* Entry Content/Summary
*
*/
if ( is_archive() || is_search() ) : // Check if this is an Archives and Search page ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
<a class="more-link" href="<?php the_permalink() ?>" title="<?php c7s_the_title_attribute(); ?>"><?php _e( 'Read More →', 'framework' ); ?></a>
</div><!-- .entry-summary -->
<?php else : // If not Archives or Search page ?>
<div class="entry-content">
<?php global $more; $more = 0; // Needed for more tag to work ?>
<?php the_content( __( 'Read More →', 'framework' ) ); // Show content ?>
<?php do_action( 'get_page_links' ); // Show page links (custom function to wp_link_pages() - functions/theme-helpers.php ?>
</div><!-- .entry-content -->
<?php endif; // End Archive and Search page check ?>
</article><!-- #post-## -->
<?php
/**
* Entry Comments
*
*/
comments_template( '', true ); ?>
<?php endwhile; // end posts loop ?>
<?php else : // If there are not any posts ?>
<?php
/**
* Page Header
*
*/
locate_template( 'includes/page-header.php', true ); ?>
<?php
/**
* Archives
*
*/
get_template_part( 'loop', 'archives' ); ?>
<?php endif; // end loop ?>
<?php
/**
* Pagination
*
*/
if ( $wp_query->max_num_pages > 1 ) : // Check for pages ?>
<div id="nav-below" class="pagenavi">
<?php if ( function_exists( 'wp_pagenavi' ) ) : // Check for WP Page Navi Plugin ?>
<?php wp_pagenavi(); ?>
<?php else : ?>
<div class="nav-previous"><?php next_posts_link( '<span class="meta-nav">←</span>' . __( ' Older posts', 'framework' ) ); ?></div>
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts ', 'framework' ) . '<span class="meta-nav">→</span>' ); ?></div>
<?php endif; // End WP Page Navi plugin check ?>
</div><!-- #nav-below -->
<?php endif; // end page check ?>
</section><!-- #entry-container -->