motayeb/comments.php
Kazem Alghasi f408faac54 build(theme): scaffold initial theme directory structure and assets
Initialize the base WordPress theme files, including core template
hierarchy (index, page, single, archive, 404), WooCommerce template
overrides, and essential asset directories.
2026-08-15 22:11:08 +03:30

9 lines
170 B
PHP

<?php
defined('ABSPATH') || exit;
if(post_password_required()) return;
wp_list_comments(array(
'style' => 'div',
'avatar_size' => 48,
'max_depth' => 3,
));
?>