Hallo Michael,
vielen Dank für die schnelle Antwort.
Also eine home.php gibt es nicht. Ein paar Infos zum Umbau. Der Newsfeed wurde von der Startseite damals komplett entfernt. Die News wurden in der linken Sidebar mit dem Plugin Recent Post with experts angezeigt.
Da ich jetzt aber gerne doch einen größeren Newsfeed haben wollte mit Artikel Bild usw. habe ich in die index.php folgenden Code eingefügt:
<h2 class="orange">Neuigkeiten</h2>
<div id="content" role="main";>
<?php if ( have_posts() ) : ?>
<?php twentyeleven_content_nav( 'nav-above' ); ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php twentyeleven_content_nav( 'nav-below' ); ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</div><!-- #content -->
</div><!-- #primary -->
In der content.php habe ich noch folgenden Code für das Artikelbild eingefügt
<?php
if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) {
the_post_thumbnail(array(250, 167), array("class" => "alignleft post_thumbnail"));
}
?>
Ich bin jetzt nicht der Crack in Sachen Programmierung :) aber ich hoffe ich kriege das irgendwie hin. Welche Infos benötigt Ihr noch?