Files
argon-theme/comments-shuoshuo-preview.php
nanhaoluo 31d8fde308 feat: Argon WordPress主题完整版本
- 基于Argon主题的WordPress博客主题
- 支持响应式设计和暗色模式
- 包含完整的文章管理和评论系统
- 集成友情链接管理功能
- 支持多种自定义设置选项
- 优化的用户界面和交互体验
2026-01-11 19:48:02 +08:00

22 lines
416 B
PHP

<?php
if ( post_password_required() ) {
return;
}
?>
<?php if ( have_comments() ){?>
<div class="shuoshuo-comments">
<?php /*the_comments_navigation();*/ ?>
<ol class="comment-list">
<?php
wp_list_comments(
array(
'type' => 'comment',
'callback' => 'argon_comment_shuoshuo_preview_format'
)
);
?>
</ol>
<?php /*the_comments_navigation();*/ ?>
</div>
<?php }?>