heel simpel: onder wp-admin het bestand index.php aanpassen.
Verwijder het volgende stukje code:
<?php wp_dashboard(); ?>
en zie daar: een prachtig schoon dashboard.
Dank u, maar in mijn index.php zie ik deze PHP code niet staan….:-(
–<?php get_header(); ?>
<?php get_sidebar(); ?>
<!– Content –>
<div id=”content”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!– Post –>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”post-title”>
<div class=”post-date”>
<span><?php the_time(‘d’) ?></span>
<?php the_time(‘M’) ?>
</div>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
Author: <?php the_author() ?> // Category: <?php the_category(‘, ‘) ?>
</div>
<div class=”post-entry”>
<?php the_content(‘meer…’); ?>
</div>
<div class=”post-info”>
<?php comments_popup_link(‘Comments (0)’, ‘Comment (1)’, ‘Comments (%)’); ?> // #respond”>Plaats reactie
</div>
</div>
<!– /Post –>
<?php endwhile; ?>
<!– Navigation –>
<div class=”navigation”>
<div class=”navigation-previous”><?php next_posts_link(‘« terug’) ?></div>
<div class=”navigation-next”><?php previous_posts_link(‘Verder »’) ?></div>
</div>
<!– /Navigation –>
<?php else : ?>
<!– Post –>
<div class=”post”>
<div class=”post-title”>
<h2>Niet gvonden</h2>
</div>
<div class=”post-entry”>
<p>Sorry, niets gevonden.</p>
</div>
</div>
<!– /Post –>
<?php endif; ?>
<div class=”clear”></div>
</div>
<!– /Content –>
<?php get_footer(); ?>
dat is je gewone index.php, zoals al gezegd moet je de index.php file hebben die in de directory wp-admin staat.
Yes dank je, zat in de verkeerde index.php……Sorry maar het is gelukt
DANK