Hallo Zusammen,
so, mein erstes Problem hat sich inzwischen geklärt...:-D
Nun hab ich aber ein zweites...
ich habe heute seopagebar installiert...! es funktioniert auch, aber ich hab das jetzt über jedem meiner Artikel stehen, dass sieht dann so aus:
WIe kann ich das ändern, dass es nur am Ende der Seite steht??
Hier meine Index DateI:
HTML
<?php
get_header(); ?>
<div id="top"></div>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php if (function_exists('seopagebar')) { seopagebar(); } else { ?>
<div class='navigation'>
<div class='alignleft'><?php next_posts_link(__('« Older Entries'), 'kubrick'); ?></div>
<div class='alignright'><?php previous_posts_link(__('Newer Entries »', 'kubrick')); ?></div>
</div>
<?php } ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="comment_icon"><?php comments_popup_link('No Comments', '1 Comment', '% comments'); ?></div>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="date">
<?php the_time('Y') ?><br>
<?php the_time('m.d') ?>
</div>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<p class="postmetadata"><?php the_tags('Tags: ', ', ', ''); ?> Category <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?></p>
<div class="line"> </div>
</div>
<?php endwhile; ?>
<?php if (function_exists('seopagebar')) { seopagebar(); } else { ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('« Older Entries'), 'kubrick'); ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')); ?></div>
</div>
<?php } ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen