This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive-cwn_fiche.php
95 lines (72 loc) · 2.31 KB
/
archive-cwn_fiche.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* The template for displaying Archive pages.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package Edin
*/
get_header();
?>
<div class="hero <?php echo edin_additional_class(); ?>">
<?php if ( have_posts() ) : ?>
<div class="hero-wrapper">
<h1 class="page-title">Les membres</h1>
</div>
<?php endif; ?>
</div><!-- .hero -->
<div class="content-wrapper clear">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="grid-fiches">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
// Note: La Query est modifiée dans:
// pre-get.php
// $query->set( 'orderby', 'rand');
// Page Membres:
get_template_part( 'content', 'cwn_fiche' );
// 1) On affiche 4 membres pris aléatoirement
// la requête est modifiée avec pre_get
// ajouter à la liste des IDs à exclure
// 2) Afficher la liste de tous les autres profils (portraits)
// 3) On liste les domaines de compétence
// comme dans le modèle biblio
endwhile;
else :
get_template_part( 'content', 'none' );
endif;
?>
</div>
<div class="grid-fiches">
<h2>Domaines de compétence</h2>
<ul class="biblio-tag-cloud text clear">
<?php
$args = array(
'show_option_all' => '',
'orderby' => 'name',
'order' => 'ASC',
'style' => 'list',
'show_count' => 0,
'hide_empty' => 1,
'use_desc_for_title' => 0,
'exclude' => '',
'exclude_tree' => '',
'hierarchical' => 0,
'title_li' => '',
'number' => null,
'echo' => 1,
'depth' => 0,
'current_category' => 0,
'pad_counts' => 0,
'taxonomy' => 'cwn_competence',
'walker' => null
);
wp_list_categories( $args );
?>
</ul>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>