Hi!
Ich brauche wieder mal eure Hilfe. Ich habe leider ein Plugin installiert, das auch funktionierte. Dazu musste ich nur etwas in der Datei index.php im Thema ändern. Nach der Änderung hat sich das ganze Design verändert. Beiträge sind immer mehr links und die Sidebar ist unten.
Sieht selbst...
index.php
PHP
<?php
get_header();
?>
<div id="content">
<?php query_posts('showposts=4'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<h3 class="posttitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="details"><div class="inside">Eingetragen von <?php the_author_posts_link() ?> am <?php the_time('j. F Y');?> |
<?php the_category(', ') ?> <?php edit_post_link('Bearbeiten', ' - ', ''); ?><br />
<?php if(function_exists('wp_email')) { email_link(); } ?> | <?php if(function_exists('the_views')) { the_views(); } ?>
<div class="postcontent">
<?php if (function_exists('the_excerpt_reloaded')) { ?>
<?php the_excerpt_reloaded(120, '<p><a><ul><ol><li><img><br /><blockquote><em><strong><div>', 'content', FALSE, '', FALSE, 1, TRUE); ?>
<?php } else { ?>
<?php the_excerpt(); ?>
<?php } ?>
</div>
<div class="details"><div class="inside"><?php comments_popup_link('Kein Kommentar', '1 Kommentar', '% Kommentare'); ?> bislang | <a href="<?php the_permalink() ?>">Weiterlesen »</a></div></div>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<p><?php _e('Uups... Noch nichts vorhanden!'); ?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div> <!-- closes container -->
<?php include(TEMPLATEPATH . '/bottombar.php') ?>
<?php get_footer(); ?>
Alles anzeigen
Was habe ich versehentlich falsch gemacht?
Danke :)