我在wordpress安装上设置了一个自定义主题。我一直在本地开发,一切都很好。
我今晚上传到我的服务器并正在设置新的wordpress安装。我打开固定链接,突然间我的自定义类别页面导致无限重定向循环。
我的.htaccess是可写的,所以我不认为这个问题(我已经在网上提到了很多)。
我的一个自定义网页的代码如下:它来自特定类别 - 是否有人知道如何解决此问题?
<?php get_header(); ?>
<?php
/*
Template Name: Podcasts
*/
?>
<ul class="mcol">
<?php
query_posts("cat=1");
while(have_posts()) : the_post(); ?>
<li class="article" id="post-<?php the_ID(); ?>">
<?php
if ( has_post_thumbnail() ) { ?>
<?php
$imgsrcparam = array(
'alt' => trim(strip_tags( $post- >post_excerpt )),
'title' => trim(strip_tags( $post->post_title )),
);
$thumbID = get_the_post_thumbnail( $post->ID, array(200,200), $imgsrcparam ); ?>
<div class="preview"><a href="<?php the_permalink() ?>"><?php echo "$thumbID"; ?></a><div class="front-titles"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></div></div>
<?php } else {?>
<div class="preview"><a href="<?php the_permalink() ?>"><img src="<?php bloginfo('template_url'); ?>/images/default-thumbnail.jpg" alt="<?php the_title(); ?>" /></a></div>
<?php } ?>
<div class="article-over">
</div>
</li> <?php ?>
<?php endwhile;
//Reset Query
wp_reset_query();
?>
</ul>
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<?php endwhile; ?>
<?php else : ?>
<h1 id="error"><?php _e("Sorry, but you are looking for something that isn’t here."); ?></h1>
<?php endif; ?>
<div class="pagination"><?php previous_posts_link('<< Newer Entries', 0) ?> <?php next_posts_link('Older Entries >>', 0); ?> </div>
<?php get_footer(); ?>
任何想法?我对此很新,所以不确定问题可能是什么......
答案 0 :(得分:1)
你做的很奇怪。
第二个循环没有执行任何操作,因此请将其删除,并使用get_posts
或WP Query
进行自定义查询。