だから私のインデックスページのNext/Previuosは壊れている。 2ページ目に行きますが、投稿を更新しません。それは私のカテゴリで動作します、それは私の投稿で動作しますが、それはちょうどfromページで動作しません。これが私のコードです:
<?php get_header();?>
<?php include('from.php'); ?>
<div id="content">
<div id="content-main">
<?php if ($posts) {
if (get_settings('mistylook_asideid') != "")
$AsideId = get_settings('mistylook_asideid');
function ml_hack($str)
{
return preg_replace('|</ul>\s*<ul class="asides">|', '', $str);
}
ob_start('ml_hack');
foreach($posts as $post)
{
the_post();
?>
<?php if ( in_category($AsideId) && !is_single() ) : ?>
<ul class="asides">
<li id="p<?php the_ID(); ?>">
<?php echo wptexturize($post->post_content); ?>
<br/>
<p class="postmetadata"><?php comments_popup_link('(0)', '(1)','(%)')?> | <a href="<?php the_permalink(); ?>" title="<?php _e('Permalink:','ml');?> <?php echo wptexturize(strip_tags(stripslashes($post->post_title), '')); ?>" rel="bookmark">#</a> <?php edit_post_link(__('(edit)','ml')); ?></p>
</li>
</ul>
<?php else: // If it's a regular post or a permalink page ?>
<div id="post-<?php the_ID(); ?>" <?php if (function_exists('post_class')){ post_class(); } else { echo 'class="post"' ;} ?>>
<div class="posttitle">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link to','ml');?> <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="post-info">
<?php the_time(__('M jS, Y','ml')) ?> <?php _e('by','ml');?> <?php the_author_posts_link() ?> <?php edit_post_link(__('Edit','ml'), '', ' | '); ?> </p>
</div>
<div class="entry">
<?php the_content(__('Continue Reading »','ml')); ?>
<?php wp_link_pages(); ?>
<p><?php if (function_exists('the_tags')) the_tags(__('Tags: ','ml'), ', ', '<br/>'); ?> </p>
</div>
<p class="postmetadata"><?php _e('Posted in','ml');?> <?php the_category(', ') ?> | <?php comments_popup_link(__('No Comments »','ml'), __('1 Comment »','ml'), __('% Comments »','ml'),'',__('Comments Off','ml')); ?></p>
<?php comments_template(); ?>
</div>
<?php endif; // end if in category ?>
<?php
}
ob_end_flush();
}
else include_once(TEMPLATEPATH.'/notfound.php');
?>
<p align="center"><?php posts_nav_link(' · ', 'previous page', 'next page'); ?></p>
</div><!-- end id:content-main -->
<?php get_sidebar();?>
<?php get_footer();?>
私はMistyLookというランダムテーマを使っています。私はそれを使用してみましたが、私がコアファイルに行かなければならないならば、それから私は困惑します...何か提案は?
私はしばらく前に私のテーマの一つで全く同じ問題を抱えていました。私の問題は、テーマが投稿を除外するためにquery_post
を使用していたことです。これにより、ページ付けが失敗しました。
これがそれを解決したコードだと思います。
<?php
if ( is_home() ) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=-19&paged=$paged");
}
?>
cat=-19
は私が削除したいカテゴリでした。すべてのカテゴリを含める場合は、cat=-19
なしでそれを含めるようにしてください。
このコードの目的は、変数paged
を保存し、私がカスタムquery_posts
を作成した後にそれを再び含めることで、WordPressがリーダーがどのページにあるのかを認識することです。