Hi shinjing,
unfortunatly it doesn’t work.
I think it must be related to the content-page.php file that I use to display all static pages and also for the page Archives.
In this file I have the code for the archives
<article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<header class=”entry-header”>
<h3 class=”entry-title”><?php the_title(); ?></h3>
</header><!– .entry-header –>
<div class=”entry-content”>
<?php the_content(); ?>
<?php if (‘archives’ == $post->post_name) : ?>
<?php wp_get_archives(‘type=postbypost’); ?>
<?php endif; ?>
<?php wp_link_pages( array( ‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘kunsthalle’ ), ‘after’ => ‘</div>’ ) ); ?>
</div><!– .entry-content –>
</article><!– #post-<?php the_ID(); ?> –>
I also tried to erase the
‘
‘ul’ tag, but it didn’t help.
Maybe this code has to be changed?