Initialize the base WordPress theme files, including core template hierarchy (index, page, single, archive, 404), WooCommerce template overrides, and essential asset directories.
9 lines
170 B
PHP
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,
|
|
));
|
|
?>
|