Bygg ditt WP-tema från grunden
Vilka templatetags ska jag använda?
De tags som ska vara i header är dessa:
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title><meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /><meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /><link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /><link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /><?php wp_get_archives('type=monthly&format=link'); ?><?php //comments_popup_script(); // off by default ?><?php wp_head(); ?>
Tags som brukar finnas i sidebar:
<?php wp_list_categories(); ?><?php wp_list_pages('include=x &title_li=') ; ?><?php wp_list_categories ('show_count= 1&title_li=<h2>Categories</h2>'); ?><?php wp_get_archives (type=postbypost&limit=5'); ?>?php wp_register(); ?><?php wp_loginout(); ?><?php wp_meta(); ?>
Templatetags som är nödvändiga för poster i index.php i kronologisk ordning.
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?><div class="Post" id="post-<?php the_ID(); ?>" style="padding-bottom: 40px;"><h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>-
<?php the_date('Y.m.d'); ?> <?php comments_popup_link('Inga kommentarer', '1 kommentar', '% kommentarer'); ?> <?php edit_post_link('Edit'); ?><?php the_author() ?><?php the_content('» »'); ?><!--<?php trackback_rdf(); ?>--><?php comments_template(); ?><?php endwhile; ?><?php else : ?><h2>No posts found. Try a different search?</h2><?php include (TEMPLATEPATH . '/searchform.php'); ?><?php endif; ?>
Skriv ut sidan
