Hallo, ich habe ein anliegen, Ich möchte auf der Startseite über den letzten Artikeln eine Grafik einfügen. Wenn ich das so mache:
<?php
/* Mystique/digitalnature */
get_header();
?>
<!-- main content: primary + sidebar(s) -->
<div id="main">
<div id="main-inside" class="clearfix">
<!-- primary content -->
<div id="primary-content">
<p>
<img border="0" src="http://www.kinderfilme-kostenlos.de/willkommensbanner.jpg" width="630" height="350">
</p>
<div class="blocks">
<?php do_action('mystique_before_primary'); ?>
<?php
if (have_posts()):
while (have_posts()):
the_post();
mystique_post();
endwhile;
mystique_pagenavi();
else: ?>
<h1 class="title error"><?php _e("No posts found","mystique"); ?></h1>
<p><?php _e("Sorry, but you are looking for something that isn't here.","mystique"); ?></p>
<?php endif; ?>
<?php do_action('mystique_after_primary'); ?>
</div>
</div>
<!-- /primary content -->
<?php get_sidebar(); ?>
</div>
</div>
<!-- /main content -->
<?php get_footer(); ?>
Dann bekomme ich nur ne weiße Seite. Kann mir jemand sagen, was da falsch läuft??
Sven
Jetzt mitmachen!
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!