diff --git a/pcf-wp/archive.php b/pcf-wp/archive.php
new file mode 100644
index 0000000..3c29698
--- /dev/null
+++ b/pcf-wp/archive.php
@@ -0,0 +1,55 @@
+
+
Archives:
+
+
+'post', 'post_status'=>'publish', 'posts_per_page'=>-1)); ?>
+
+
+ have_posts() ) : $wpb_all_query->the_post(); ?>
+
+
+
+
+" . get_the_title() . "
+" . get_the_excerpt();
+}
+?>
+
+
+
+
+
+
+
+
diff --git a/pcf-wp/category.php b/pcf-wp/category.php
new file mode 100644
index 0000000..0d38ddc
--- /dev/null
+++ b/pcf-wp/category.php
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pcf-wp/comments.php b/pcf-wp/comments.php
new file mode 100644
index 0000000..4f1d50e
--- /dev/null
+++ b/pcf-wp/comments.php
@@ -0,0 +1,96 @@
+ $current_post_ID,
+);
+
+$comments = get_comments($args);
+$com_count = wp_count_comments( $current_post_ID );
+
+if ($com_count->all == 0):
+
+ echo "Aucun commentaire
";
+
+else:
+
+ echo "Commentaires:
";
+
+endif;
+
+foreach ( $comments as $comment ) :
+ $com_parent = $comment->comment_parent;
+
+ if ($com_parent == 0):
+
+ $com_ID = $comment->comment_ID;
+ set_query_var('com_ID', $com_ID);
+ get_template_part( 'template-parts/comment-wrapper');
+
+ $defaults = array(
+ 'format' => 'tree',
+ 'status' => 'all',
+ 'hierarchical' => 'threaded',
+ //'orderby' => 'comment_ID',
+ 'orderby' => 'publish_date',
+ 'order' => 'ASC',
+ );
+ //TODO
+ $children_com = $comment->get_children($defaults);
+
+ foreach ($children_com as $child_com):
+
+ $com_ID = $child_com->comment_ID;
+ set_query_var('com_ID', $com_ID);
+
+ get_template_part( 'template-parts/comment-wrapper');
+
+ endforeach;
+
+ endif;
+
+endforeach;
+
+?>
+
+ "",
+ 'fields' => array(
+//Author field
+'author' => '',
+//Email Field
+'email' => '
+
+*Lire notre politique de confidentialité
+',
+//URL Field
+'url' => '',
+//Cookies
+'cookies' => ''
+
+),
+ 'comment_field' => '',
+
+'title_reply' => __( '' ),
+'title_reply_to' => __( '' ),
+'title_reply_before' => '',
+'title_reply_after' => '',
+'comment_notes_before' => '',
+'comment_notes_after' => '',
+
+);
+
+
+comment_form( $args );
+
+echo "
+
+
+
+";
+?>
diff --git a/pcf-wp/comrade.html b/pcf-wp/comrade.html
new file mode 100644
index 0000000..fc6477e
--- /dev/null
+++ b/pcf-wp/comrade.html
@@ -0,0 +1,3 @@
+
+
+
diff --git a/pcf-wp/footer.php b/pcf-wp/footer.php
new file mode 100644
index 0000000..6572690
--- /dev/null
+++ b/pcf-wp/footer.php
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+