-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
39 lines (21 loc) · 933 Bytes
/
archive.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php get_header(); ?>
<!--Template général-->
<section class="page-wrap"><!--Ajoute de l'espace en haut et en bas-->
<div class="container">
<section class="row">
<div class="col-lg-3">
<?php if (is_active_sidebar('blog-sidebar')) : ?><!--Si une sidebar est active-->
<?php dynamic_sidebar('blog-sidebar'); ?><!--Affiche la sidebar-->
<?php endif; ?>
</div>
<div class="col-lg-9">
<h1><?php echo single_cat_title(); ?></h1><!--Affiche le nom de la catégorie sur la page-->
<!--<h1><?php the_title(); ?></h1>--><!-- A mettre dans la boucle-->
<?php get_template_part('includes/section', 'archive'); ?><!-- ceci==includes/section-content.php-->
<?php previous_posts_link(); ?><!--Affiche lien suivant, ne pas oublier de definir le nombre d'article par page dans wordpress-->
<?php next_posts_link(); ?>
</div>
</section>
</div>
</section>
<?php get_footer(); ?>