Möchte meinen Blog in eine HTML seite einbinden,wie mache ich das,habe folgendes probiert...
PHP
<ul class="meine wp/index.php">
<?php
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query('showposts=5');
?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a> <?php comments_number('(0)', '(1) ', '(%)'); ?></li>
<?php endwhile; ?>
<?php $wp_query = null; $wp_query = $temp;?>
</ul>
Alles anzeigen
hat aber leider garnix gebracht,ich möchte auch nur den blog selber haben kein header und auch kein footer nur den blog & seiten Navi....
wie stelle ich das an?