... hallo, wenn ich einen artikel nach autor sortieren will funktioeniert das zwar anfänglich ganz gut:
[FONT=verdana]http://www.gamesart.de/?author=1&paged=1
aber es kommt keine auswahl um auf seite 2 uws. zu blättern. ich verstehe das nicht weil wenn ich die adressleiste ändere in
[/FONT][FONT=verdana]http://www.gamesart.de/?author=1&paged=2
funktioniert das ohne probleme, was mache ich falsch?
verwende ich zum beispiel nur die suchleiste auf der rechten seite und gebe "artwork" ein, werden mir 3 seiten angezeigt obwohl alles auch über die archive page läuft wie auch bei der autoren sache. nur das wenn man dann dort auf page 2 klickt der spaß nicht funktioniert und alles auf die erste seite des blogs springt, ich verzweifele hier noch...
hier mal die komplette archiv.php
[/FONT]
<?php
/*
Template Name: archive
*/
get_header();
?>
<!-- MAIN -->
<div id="main">
<!-- Content of MAIN -->
<div class="content">
<!-- Page Title -->
<div class="page_title">
<div class="nav_location"></div>
<h2>Archiv</h2>
</div>
<div class="separator_soft"></div>
<!-- /Page Title -->
<div class="fullwidth">
<!-- Column 2 on 3 -->
<div class="two_on_three">
<?php
while(have_posts()):the_post();
$introduce = get_post_meta($post->ID, "intro", true);
?>
<!-- Blog Entry -->
<div class="blog_entry <?php get_post_class(); ?>" id="post-<?php the_ID(); ?>">
<h4><a href="<?php the_permalink();?>"><?php the_title();?></a></h4>
<div class="cartouche_blog">
<span class="date_post_blog"><?php the_time('l d F, Y'); ?> at <?php the_time('g:i a'); ?></span>
<span class="author_blog"><?php the_author();?></span>
<span class="post_category_blog"><?php the_category(', ') ?></span>
<span class="post_comments_blog"><?php comments_popup_link('0', '1', '%'); ?></span>
</div>
<?php
$attr = array('class' => "shadow_item_590");
the_post_thumbnail('image_xl',$attr);
?>
<?php if($introduce) { ?><p class="excerpt biglines"><?php echo $introduce;?></p><?php } ?>
<a href="<?php the_permalink();?>" class="continue">WEITERLESEN →</a>
<br class="clear" />
</div>
<!-- /Blog Entry -->
<br class="clear" />
<div class="separator_soft"></div>
<br class="clear" />
<?php endwhile; ?>
</div>
<!-- /Column 2 on 3 -->
<!-- Column 1 on 3 -->
<div id="sidebar" class="one_on_three">
<?php if ( ! dynamic_sidebar( 'Sidebar' )) : endif; ?>
</div>
<!-- /Column 1 on 3 -->
<br class="clear" />
<div class="separator_soft"></div>
<br class="clear" />
</div>
</div>
<!-- /Content of MAIN -->
</div>
<!-- /MAIN -->
<?php
get_footer();
?>
Alles anzeigen
Ich bitte Euch, helft mir!