aboutsummaryrefslogtreecommitdiffstats
path: root/comments.php
diff options
context:
space:
mode:
authorHeckyel <heckyel@openmailbox.org>2017-02-20 19:28:35 -0500
committerHeckyel <heckyel@openmailbox.org>2017-02-20 19:28:35 -0500
commit7f5cb4effd041e1c86aa3e4847bac78e0498389d (patch)
tree9c482cd674f48dc2a4dd9ba80dc21ffa183bfeb5 /comments.php
downloadlidra-theme-7f5cb4effd041e1c86aa3e4847bac78e0498389d.tar.lz
lidra-theme-7f5cb4effd041e1c86aa3e4847bac78e0498389d.tar.xz
lidra-theme-7f5cb4effd041e1c86aa3e4847bac78e0498389d.zip
primera versión
Diffstat (limited to 'comments.php')
-rw-r--r--comments.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/comments.php b/comments.php
new file mode 100644
index 0000000..812511b
--- /dev/null
+++ b/comments.php
@@ -0,0 +1,27 @@
+<?php
+printf(
+ '<section class="col-sm-12">
+ <div class="comentarios">
+ <h6 class="page-libre">no_title</h6>');
+ printf('<ul class="commentlist">');
+ wp_list_comments();
+ printf('</ul>');
+
+ // printf('<div>');
+ // comment_form();
+ // printf('</div>');
+
+ $comments_args = array(
+ // change the title of send button
+ // 'label_submit'=>'Send',
+ // // change the title of the reply section
+ // 'title_reply'=>'Write a Reply or Comment',
+ // // remove "Text or HTML to be displayed after the set of comment fields"
+ // 'comment_notes_after' => '',
+ // redefine your own textarea (the comment body)
+ 'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label><br /><textarea id="comment" name="comment"></textarea></p>',
+ );
+ comment_form($comments_args);
+printf('</div>
+ </section>'
+);