Vilka templatetags ska jag använda?

De tags som ska vara i header är dessa:

  1. <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
  2. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  3. <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
  4. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  5. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  6. <?php wp_get_archives('type=monthly&format=link'); ?>
  7. <?php //comments_popup_script(); // off by default ?>
  8. <?php wp_head(); ?>

Tags som brukar finnas i sidebar:

  1. <?php wp_list_categories(); ?>
  2. <?php wp_list_pages('include=x &title_li=') ; ?>
  3. <?php wp_list_categories ('show_count= 1&title_li=<h2>Categories</h2>'); ?>
  4. <?php wp_get_archives (type=postbypost&limit=5'); ?>
  5. ?php wp_register(); ?>
  6. <?php wp_loginout(); ?>
  7. <?php wp_meta(); ?>

Templatetags som är nödvändiga för poster i index.php i kronologisk ordning.

  1. <?php if (have_posts()) : ?>
  2. <?php while (have_posts()) : the_post(); ?>
  3. <div class="Post" id="post-<?php the_ID(); ?>" style="padding-bottom: 40px;">
  4. <h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  5. <?php the_date('Y.m.d'); ?>
  6. <?php comments_popup_link('Inga kommentarer', '1 kommentar', '% kommentarer'); ?> <?php edit_post_link('Edit'); ?>
  7. <?php the_author() ?>
  8. <?php the_content('&raquo; &raquo;'); ?>
  9. <!--<?php trackback_rdf(); ?>-->
  10. <?php comments_template(); ?>
  11. <?php endwhile; ?>
  12. <?php else : ?>
  13. <h2>No posts found. Try a different search?</h2>
  14. <?php include (TEMPLATEPATH . '/searchform.php'); ?>
  15. <?php endif; ?>

Antal sidor: 1 2 3 4 5 6 7

1 Star2 Stars3 Stars4 Stars5 Stars (14 votes, average: 5 out of 5)
Loading ... Loading ...
  Skriv ut sidan   Skriv ut sidan