WordPress thema
-
Hallo iedereen,
Morgen moet ik ten laatste mijn eindwerk binnenleveren, hiervoor moeten we een website maken in html (nadien php) met externe css om daarna vervolgens als WordPress theme te gebruiken, maar volgens mij heb ik mij vergist met de php tags, kan iemand mij aub vertellen wat ik fout doe?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11"> <? // Header: vult dynamisch de titel in en linkt template met stylesheet ?> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php bloginfo('name'); ?> | <?php wp_title(); ?></title> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <?php wp_head(); ?> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <? // einde header ?> <body> <div id="wrap"> <div id="header"> <? // Zet de site naam en site beschrijfing in de header van de template ?> <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> <span class="description"><?php bloginfo('description'); ?></span> </div> <div id="nav"> <ul id="navigation"> <? ?> <li <?php if (is_home()) { echo 'class="current_page_item"'; } ?>><a href="<?php echo get_option('home'); ?>">Home</a></li> <?php // Het hoofdmenu wp_list_pages('depth=1&title_li=0&sort_column=menu_order'); ?> </ul> </div> <div id="main"> <? if(class_exists('bcn_breadcrumb_trail')) { //Make new breadcrumb object $breadcrumb_trail = new bcn_breadcrumb_trail; //Setup our options //Set the home_title to Blog $breadcrumb_trail->opt['home_title'] = "Blog"; //Set the current item to be surrounded by a span element, start with the prefix $breadcrumb_trail->opt['current_item_prefix'] = '<span class="current">'; //Set the suffix to close the span tag $breadcrumb_trail->opt['current_item_suffix'] = '</span>'; //Fill the breadcrumb trail $breadcrumb_trail->fill(); //Display the trail $breadcrumb_trail->display(); } ?> <? if(is_page('3')){ // toon deze titel enkel op pagina '3' print "<h1>hier komt iets speciaal voor de wereld</h1>"; } ?> <?php // schrijft de pagina's en de blog entries include(TEMPLATEPATH . "/content.php"); ?> </div> <div id="sidebar"> <div> <ul> <? if(is_home()){ // toon sidebar 1 op de home page ?> <?php /* Widgets: Sidebar */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("sidebar1") ) : ?> <?php endif; ?> <? } else { // toon sidebar 2 op al de andere paginas ?> <?php /* Widgets: Sidebar */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("sidebar2") ) : ?> <?php endif; ?> <? } ?> </ul> </div> <div id="footer"> <?php /* Widgets: Footer */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("footer") ) : ?> <?php endif; ?> </div> </div> <?php wp_footer(); ?> </body> </html>
1 reactie aan het bekijken (van in totaal 1)
1 reactie aan het bekijken (van in totaal 1)
- Het onderwerp ‘WordPress thema’ is gesloten voor nieuwe reacties.