Aangemaakte reacties

1 reactie aan het bekijken (van in totaal 1)
  • Forum: Algemeen WordPress
    In antwoord op: Category is er niet
    Thread starter arashh92

    (@arashh92)

    Dit is het stukje code van het menu in de header.php van de theme:

    <ul class="menu">
    		<li class="<?php if ( is_home() ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>">Home</a></li>
    		<li class="<?php if ( is_category('weblog') ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/index.php/category/weblog/">Weblog</a></li>
    		<li class="<?php if ( is_category('resources') ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/index.php/category/resources/">Bronnen</a></li>
    		<li class="<?php if ( is_page('about') ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/index.php/about/">Over</a></li>
    		<li class="<?php if ( is_page('archives') ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/index.php/archives/">Archieven</a></li>
    		<li class="<?php if ( is_page('download') ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/index.php/download/">Download</a></li>
    </ul>

1 reactie aan het bekijken (van in totaal 1)