Volg de onderstaande video om te zien hoe je onze site als web-app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
background: url(images/bgMain.png) center 20px no-repeat;
Mam zei:Ja dat komt omdat dat waarschijnlijk een single page is. Je zult dus die header moeten invoegen in single.php..
Ga naar uw themefolder en open index.php en single.php, kopieer van index.php de div show (alles wat er tussen staat incl de div zelf) op dezelfde plaats naar single.php.
NEEM EEN BACKUP VOOR JE DIT DOET! Je bent precies hard aant kloten want je lay-out is fucked up atm?

<?php get_header(); ?>
<div id="body"> <!-- Body [sidebar, posts] -->
<div id="content"> <!-- Contents -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postMain png"> <!-- Post Block Wrapper -->
<div class="post"> <!-- Post Contents -->
<h2><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<h3><?php the_time('F jS, Y') ?> | By <?php the_author() ?></h3>
<?php the_content(); ?>
<div class="postMeta"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in: <?php the_category(', ') ?> </div>
</div> <!-- / Post Contents End -->
</div> <!-- / Post Block Wrapper End -->
<div style="clear:both">
</div><div class="postFoot png"></div>
<?php endwhile; ?> <!-- / Post Footer for image -->
<?php comments_template(); ?>
<?php else : ?>
<?php endif; ?>
</div> <!-- / Contents End -->
<?php get_sidebar(); ?>
<div class="clr"></div>
</div> <!-- / Body [sidebar, posts] End -->
<?php get_footer(); ?>
</div> <!-- / Main Container End -->
</div> <!-- / Inner Wrapper [contains Floor Image] End -->
</div> <!-- / Outermost Block End -->
</body>
</html>
<?php get_header(); ?>
<div id="body"> <!-- Body [sidebar, posts] -->
<div id="content"> <!-- Contents -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postMain png"> <!-- Post Block Wrapper -->
<div class="post"> <!-- Post Contents -->
<h2><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<h3><?php the_time('F jS, Y') ?> | By <?php the_author() ?></h3>
<?php the_content(); ?>
<div class="postMeta"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> <br /> Comments: <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></div>
</div> <!-- / Post Contents End -->
</div> <!-- / Post Block Wrapper End -->
<!-- / Post Footer for image -->
<div style="clear:both">
</div><div class="postFoot png"></div>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
</div> <!-- / Contents End -->
<?php get_sidebar(); ?>
<div class="clr"></div>
</div> <!-- / Body [sidebar, posts] End -->
<?php get_footer(); ?>
</div> <!-- / Main Container End -->
</div> <!-- / Inner Wrapper [contains Floor Image] End -->
</div> <!-- / Outermost Block End -->
</body>
</html>
Mam zei:Oké, we moeten hoger gaan zoeken. Post eens je header.php aub? Daar zal waarschijnlijk een if-statement staan die je zal moeten verwijderen.
