Davicii Dotcom
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: Cut RSS Feed at MORE TagThank you very much! It worked and looks now as it should! 🙂
Forum: Fixing WordPress
In reply to: Cut RSS Feed at MORE TagI changed this already and it doesn’t do anything. Can you check this pleasy? Any other idea?
Forum: Themes and Templates
In reply to: [Hemingway] AdSense not working correctlyI have to correct myself: I just see white space and some sort of code. Please help me 🙂
Forum: Themes and Templates
In reply to: [Hemingway] Favicon not working correctlyProblem solved 🙂
I deaktivated/deleted unnecessary plugins and put a link rel in the header php and everything worked 😀
Forum: Themes and Templates
In reply to: [Hemingway] Archive Template Sidebar ProblemHi 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(); ?>
Viewing 5 replies - 1 through 5 (of 5 total)