Stylesheet stripped from page 2 of posts
-
I am using WordPress as a CMS for my portfolio and I’m still in the process of setting up my page templates. I have a custom page template that shows only posts from one specific category. I set it to show only 5 posts per page and then direct the user to page 2. But on page 2, the stylesheets are not being applied at all even though it is using the same page template that worked for all other pages. This happens with both FF3.0.11 and IE6.
https://cfwan.com/web/
(Scroll to bottom to click to page 2)And here is my custom loop which I think is the source of the problem.
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=Web&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?> <?php the_content('', FALSE, ''); ?> <?php endwhile; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Stylesheet stripped from page 2 of posts’ is closed to new replies.