免费发布信息
微信公众号

WordPress主题制作全过程(十):制作comments.php

   来源:黔优网责任编辑:优优  时间:2024-09-23 12:04:15 浏览量:0

前面给大家介绍了《wordpress/501084.html" target="_blank">wordpress主题制作全过程(九):制作single.php》,本文继续给大家介绍如何制作comments.php,下面一起来看一下吧~

今天我们来制作评论主题的评论模块。在主题目录Aurelius下新建comments.php,在single.php剪切以下代码,粘贴到comments.php:

<h3>Comments</h3>
<div> </div>
<ol>
<li>
<div> @@##@@ <a>Reply</a> </div>
<div>
<div> <cite><a>Joe Bloggs</a></cite>
<div>January 6, 2010 at 6:26 am</div>
</div>
<div>
<p>Donec leo. Aliquam risus elit, luctus vel, interdum vitae, malesuada eget, elit. Nulla vitae ipsum. Donec ligula ante, bibendum sit amet, elementum quis, viverra eu, ante. Fusce tincidunt. Mauris pellentesque, arcu eget feugiat accumsan, ipsum mi molestie orci, ut pulvinar sapien lorem nec dui.</p>
</div>
</div>
</li>
</ol><div> </div>

Add a comment

 

Your Name

Your Email

Your Website

Comment

Add comment 

在single.php原位置添加代码:

立即学习“PHP免费学习笔记(深入)”;

<?php  comments_template(); ?>

以上语句的作用就是将comments.php里的所有内容导入到single.php中,与直接在single.php写comments.php中的代码效果是一样的。

为了安全起见,不让恶意用户直接打开评论文件,请在comments.php头部添加以下代码:

<?php if (isset($_SERVER[&#39;SCRIPT_FILENAME&#39;]) && &#39;comments.php&#39; == basename($_SERVER[&#39;SCRIPT_FILENAME&#39;]))
die (&#39;Please do not load this page directly. Thanks!&#39;);
?>

因为WordPress的输出评论函数wp_list_comments()输出的评论代码与我们主题的评论代码不一样的,我们得自定义我们的评论列表,将comments.php中的以下代码删除(以下代码用于列出文章的所有评论):

     

 @@##@@ Reply    Joe Bloggs January 6, 2010 at 6:26 am

Donec leo. Aliquam risus elit, luctus vel, interdum vitae, malesuada eget, elit. Nulla vitae ipsum. Donec ligula ante, bibendum sit amet, elementum quis, viverra eu, ante. Fusce tincidunt. Mauris pellentesque, arcu eget feugiat accumsan, ipsum mi molestie orci, ut pulvinar sapien lorem nec dui.

改成:

<?php  
    if (!empty($post->post_password) &amp;&amp; $_COOKIE['wp-postpass_' . COOKIEHASH] != $post-&gt;post_password) { 
        // if there's a password
        // and it doesn't match the cookie
    ?&gt;
    

        

请输入密码再查看评论内容.

              

        

评论功能已经关闭!

              

        

还没有任何评论,你来说两句吧

         

以上代码的意思大致也可以看得出来了,就是一大堆 如果...就....,如果以上条件都不满足就列出所有评论。现在将主题文件夹Aurelius中的functions.php中的 ?> ,改成以下代码,如果你之前从本博客下载到的functions.php已经有以下代码则不用再添加:

function aurelius_comment($comment, $args, $depth) 
{
   $GLOBALS['comment'] = $comment; ?&gt;
   

">      '回复','depth' => $depth, 'max_depth' => $args['max_depth']))) ?>  "> %s'), get_comment_author_link()); ?> 发表于:     comment_approved == '0') : ?> 你的评论正在审核,稍后会显示出来!

             

以上代码所用到的WordPress函数及相应的说明:

函数名称 函数功能
get_avatar($comment, 48) 获取评论者的gravatar头像,尺寸为48 * 48
comment_reply_link() 回复留言的链接
get_comment_author_link 用于获取评论者博客地址
get_comment_time 获取评论发布时间
edit_comment_link 管理员修改评论的链接
comment_text() 输出评论内容

好,现在在你的文章页面底部就可以正常地显示评论了!现在我们继续来制作提交评论的表单,将以下代码删除(也就是评论表单的代码):

      

Add a comment

 

Your Name

Your Email

Your Website

Comment

Add comment 

改成:

<?php  
if ( !comments_open() ) :
// If registration required and not logged in.
elseif ( get_option(&#39;comment_registration&#39;) && !is_user_logged_in() ) : 
?><p>你必须 <a>"&gt;登录</a> 才能发表评论.</p>
<?php  else  : ?><!-- Comment Form -->
/wp-comments-post.php" method="post">     

发表评论

           

                 

            昵称             " size="23" tabindex="1" />                  

            电子邮件             " size="23" tabindex="2" />                  

            网址(选填)             " size="23" tabindex="3" />                           

您已登录:/wp-admin/profile.php"> . " title="退出登录">退出 »                  

            评论内容                               

                         发表评论                 ID); ?>

函数名称 函数功能
is_user_logged_in 判断用户是否登录
wp_login_url 博客登录地址
get_comment_author_link 用于获取评论者博客地址
$comment_author 读取cookie,如果该用户之前已经发表过评论则自动帮助用户填写用户名
$comment_author_email 读取cookie,如果该用户之前已经发表过评论则自动帮助用户填写Email
$comment_author_url 读取cookie,如果该用户之前已经发表过评论则自动帮助用户填写博客地址
do_action('comment_form', $post->ID); 该函数为某些插件预留
wp_logout_url 退出登录的链接

推荐学习:《WordPress教程》

以上就是WordPress主题制作全过程(十):制作comments.php的详细内容,更多请关注本网内其它相关文章!

 
 
 
没用 0举报 收藏 0
免责声明:
黔优网以上展示内容来源于用户自主上传、合作媒体、企业机构或网络收集整理,版权争议与本站无关,文章涉及见解与观点不代表黔优网官方立场,请读者仅做参考。本文标题:WordPress主题制作全过程(十):制作comments.php,本文链接:https://www.qianu.com/help/51431.html,欢迎转载,转载时请说明出处。若您认为本文侵犯了您的版权信息,或您发现该内容有任何违法信息,请您立即点此【投诉举报】并提供有效线索,也可以通过邮件(邮箱号:kefu@qianu.com)联系我们及时修正或删除。
 
 

 

 
推荐图文
推荐帮助中心
最新帮助中心