WordPress回复评论框跟随

wordpress 季若尘 4年前 (2020-03-16) 547次浏览 已收录 0个评论 扫描二维码

wordpress 的评论回复表单跟随功能是通过 comment-reply.js 这个 js 实现的。不引入该 js,回复评论时会刷新界面。如何引入该 js,我们可以使用 wp_enqueue_script()这个内置方法。

方式一:在 header.php 中引入

< ?php if ( is_singular() && comments_open() &&(get_option('thread_comments') == 1)){ wp_enqueue_script( 'comment-reply' ); }?>

方式二:在 function.php 使用动作钩子方法实现

//回复评论框跟随
function theme_queue_js(){
    if (!is_admin()){
        if ( is_singular() && comments_open() && (get_option('thread_comments') == 1)){
            wp_enqueue_script( 'comment-reply' );  
        }
    }
}
add_action('get_header', 'theme_queue_js');

版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:WordPress回复评论框跟随
喜欢 (4)
[]
分享 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址