最近有人找二次开发modown主题,需要修改评论显示,要不影响主题升级的情况下修改,那么需要用到子主题。
怎样才能用子主题来覆盖默认的评论模板函数comments_template引用的模板文件呢?
将以下代码加到子主题的functions.php里,然后子主题里创建一个comments-new.php文件即可。
add_filter( "comments_template", "modown_child_comment_template" ); function modown_child_comment_template( $comment_template ) { global $post; if ( !( is_singular() && ( have_comments() || 'open' == $post->comment_status ) ) ) { return; } return dirname(__FILE__) ."/comments-new.php"; }
来源地址:WordPress 如何用子主题来修改评论模板comments.php
转载声明:本站文章若无特别说明,皆为原创,转载请注明来源:www.88531.cn资享网,谢谢!^^
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END