archives rss search

Dove vai, se la sitemap non ce l’hai?

line

  1. <h3>Pagine</h3>  
  2.     <ul><?php wp_list_pages(“title_li=” ); ?></ul>  
  3. <h3>Feed</h3>  
  4.     <ul>  
  5.         <li><a title=“Full RSS Feed” href=“feed:<?php bloginfo(‘rss2_url’); ?>”>RSS</a></li>  
  6.     </ul>  
  7. <h3>Categorie</h3>  
  8.     <ul><?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0&feed=RSS’); ?></ul>  
  9. <h3>Articoli:</h3>  
  10.     <ul><?php $archive_query = new WP_Query(‘showposts=1000&cat=-8’);  
  11.             while ($archive_query->have_posts()) : $archive_query->the_post(); ?>  
  12.                 <li>  
  13.                     <a href=“<?php the_permalink() ?>” rel=“bookmark” title=“vai a <?php the_title(); ?>”><?php the_title(); ?></a>  
  14.                  (<?php comments_number(‘0’‘1’’%’); ?>)  
  15.                 </li>  
  16.             <?php endwhile; ?>  
  17.     </ul>  
  18.   
  19. <h3>Archivi</h3>  
  20.     <ul>  
  21.         <?php wp_get_archives(‘type=monthly&show_post_count=true’); ?>  
  22.     </ul> 

line