Interesting, looking at your site, it shows the sidebar inside the “wrapper section-inner” div on normal pages and outside of it on the archive page. I don’t use an archive page, so I have not seen if this is consistent with mine.
Hi Davicii,
I believe that I’ve fixed that in an update. Try updating Hemingway to the latest version, and that should fix the problem.
Hi Anders,
I’m sorry but I’m using the newest version of your theme. It may be caused by some changes that I did to the archive template php file.
Here’s the code that I’m using now that causes problemes, please tell me what I should change that it looks nice 🙂
<?php
/*
Template Name: Archive template
*/
?>
<?php get_header(); ?>
<div class="wrapper section-inner">
<div class="content left">
<div class="posts">
<div class="post">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if ( has_post_thumbnail() ) : ?>
<div class="featured-media">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_post_thumbnail('post-image'); ?>
<?php if ( !empty(get_post(get_post_thumbnail_id())->post_excerpt) ) : ?>
<div class="media-caption-container">
<p class="media-caption"><?php echo get_post(get_post_thumbnail_id())->post_excerpt; ?></p>
</div>
<?php endif; ?>
</a>
</div> <!-- /featured-media -->
<?php endif; ?>
<div class="post-header">
<h2 class="post-title"><?php the_title(); ?></h2>
</div> <!-- /post-header -->
<div class="post-content">
<?php the_content(); ?>
<div class="archive-box">
<div class="archive-col">
<h3><?php _e('Last 30 Posts', 'hemingway') ?></h3>
<ul>
<?php $archive_30 = get_posts('numberposts=30');
foreach($archive_30 as $post) : ?>
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title();?>
<span>(<?php the_time(get_option('date_format')); ?>)</span>
</a>
</li>
<?php endforeach; ?>
</ul>
<h3><?php _e('Archive nach Kategorien', 'hemingway') ?></h3>
<ul>
<?php wp_list_categories( 'title_li=', 'hemingway' ); ?>
</ul>
<h3><?php _e('Archive nach Tags', 'hemingway') ?></h3>
<ul>
<?php $tags = get_tags();
if ($tags) {
foreach ($tags as $tag) {
echo '<li><a href="' . get_tag_link( $tag->term_id ) . '" title="' . sprintf( __( "View all posts in %s", 'hemingway' ), $tag->name ) . '" ' . '>' . $tag->name.'</a></li> ';
}
} ?>
</ul>
</div> <!-- /archive-col -->
<div class="archive-col">
<h3><?php _e('Autoren', 'hemingway') ?></h3>
<ul>
<?php wp_list_authors(); ?>
</ul>
<h3><?php _e('Archive nach Jahren', 'hemingway') ?></h3>
<ul>
<?php wp_get_archives('type=yearly'); ?>
</ul>
<h3><?php _e('Archive nach Monaten', 'hemingway') ?></h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<h3><?php _e('Archive nach Tagen', 'hemingway') ?></h3>
<ul>
<?php wp_get_archives('type=daily'); ?>
</ul>
</div> <!-- /archive-col -->
<div class="clear"></div>
</div> <!-- /archive-box -->
<?php if ( current_user_can( 'manage_options' ) ) : ?>
<p><?php edit_post_link( __('Edit', 'hemingway') ); ?></p>
<?php endif; ?>
</div> <!-- /post-content -->
<div class="clear"></div>
<?php comments_template( '', true ); ?>
<?php endwhile; else: ?>
<p><?php _e("Diese Anfrage ergab leider keine Treffer. Bitte versuche es noch einmal.", "hemingway"); ?></p>
<?php endif; ?>
</div> <!-- /post -->
</div> <!-- /posts -->
</div> <!-- /content -->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div> <!-- /wrapper section-inner -->
<?php get_footer(); ?>
Hi Davicii,
According to the style.css file on your site, you’re currently running version 1.23 of Hemingway. The latest version on the directory is 1.29.
I’ve posted the vanilla archive code here: http://codeshare.io/tww9h
`