wunderbar :)
Das war bei mir in der theloop.php Datei.... konnte jetzt alles so verändern wie ich wollte, nur wie bekomm ich das "NEWS" nach links?
Hier mal der Ausschnitt aus der theloop.php
PHP
<?php // Headlines for archives
if (!is_single() && !is_home() or is_paged()) { ?>
<div class="pagetitle">
<h2>
<?php /* If this is a category archive */ if (is_category()) { ?>
<?php echo single_cat_title(); ?>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
Archive for <?php the_time('F jS, Y'); ?>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
Archive for <?php the_time('F, Y'); ?>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
Archive for <?php the_time('Y'); ?>
<?php /* If this is a search */ } elseif (is_search()) { ?>
Search Results for '<?php echo $s; ?>'
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
Author Archive for <?php $post = $wp_query->post;
$the_author = $wpdb->get_var("SELECT meta_value FROM $wpdb->usermeta WHERE user_id = '$post->post_author' AND meta_key = 'nickname'"); echo $the_author; ?>
<?php /* If this is a paged archive */ } elseif (is_paged()) { ?>
Archive Page <?php echo $paged; ?>
<?php } ?>
</h2>
</div>
<?php } ?>
Alles anzeigen
mfG fikxi