Créer une page Plan du site (résolu)
Résolu/Fermé
Miryam6
Messages postés
151
Date d'inscription
jeudi 24 mai 2012
Statut
Membre
Dernière intervention
21 février 2016
-
Modifié par Miryam6 le 19/10/2014 à 17:41
Miryam6 Messages postés 151 Date d'inscription jeudi 24 mai 2012 Statut Membre Dernière intervention 21 février 2016 - 19 oct. 2014 à 17:42
Miryam6 Messages postés 151 Date d'inscription jeudi 24 mai 2012 Statut Membre Dernière intervention 21 février 2016 - 19 oct. 2014 à 17:42
A voir également:
- Créer une page Plan du site (résolu)
- Supprimer une page word - Guide
- Site de telechargement - Accueil - Outils
- Créer un compte gmail - Guide
- Créer une page facebook - Guide
- Créer un compte google - Guide
1 réponse
Miryam6
Messages postés
151
Date d'inscription
jeudi 24 mai 2012
Statut
Membre
Dernière intervention
21 février 2016
2
19 oct. 2014 à 17:42
19 oct. 2014 à 17:42
Résolu, j'ai enlevé ce qui ne sert pas
<?php
/*
Template Name: Sitemap
*/
?>
<?php do_action( '__before_main_wrapper' ); ##hook of the header with get_header ?>
<div id="main-wrapper" class="<?php echo tc__f( 'tc_main_wrapper_classes' , 'container' ) ?>">
<?php do_action( '__before_main_container' ); ##hook of the featured page (priority 10) and breadcrumb (priority 20)...and whatever you need! ?>
<div class="container" role="main">
<div class="<?php echo tc__f( 'tc_column_content_wrapper_classes' , 'row column-content-wrapper' ) ?>">
<?php do_action( '__before_article_container'); ##hook of left sidebar?>
<div id="content" class="<?php echo tc__f( '__screen_layout' , tc__f ( '__ID' ) , 'class' ) ?> article-container">
<?php do_action ('__before_loop');##hooks the header of the list of post : archive, search... ?>
<h1>Plan du Site</h1>
<div id="content">
<h2><?php _e('Pages', 'textdomain'); ?></h2>
<ul><?php wp_list_pages("title_li=" ); ?></ul>
<h2><?php _e('RSS Feeds', 'textdomain'); ?></h2>
<ul>
<li><a title="Full content" href="feed:<?php bloginfo('rss2_url'); ?>"><?php _e('Main RSS' , 'textdomain'); ?></a></li>
<li><a title="Comment Feed" href="feed:<?php bloginfo('comments_rss2_url'); ?>"><?php _e('Comment Feed', 'textdomain'); ?></a></li>
</ul>
<h2><?php _e('Categories', 'textdomain'); ?></h2>
<ul><?php wp_list_categories('sort_column=name&optioncount=1&hierarchical=0&feed=RSS'); ?></ul>
<h2><?php _e('All Blog Posts', 'textdomain'); ?></h2>
<ul><?php $archive_query = new WP_Query('showposts=1000'); while ($archive_query->have_posts()) : $archive_query->the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
(<?php comments_number('0', '1', '%'); ?>)
</li>
<?php endwhile; ?>
</ul>
</div>
<?php do_action ('__after_loop');##hook of the comments and the posts navigation with priorities 10 and 20 ?>
</div><!--.article-container -->
<?php do_action( '__after_article_container'); ##hook of left sidebar ?>
</div><!--.row -->
</div><!-- .container role: main -->
<?php do_action( '__after_main_container' ); ?>
</div><!--#main-wrapper"-->
<?php do_action( '__after_main_wrapper' );##hook of the footer with get_get_footer ?>