Se movió el repositorio git desde la raíz de WordPress a la carpeta del tema. Este commit limpia todos los archivos de WordPress del historial de tracking y mantiene únicamente los archivos del tema apus-theme. Cambios: - Eliminado tracking de archivos de WordPress core - Mantenido solo archivos del tema (97 archivos) - Actualizado .gitignore para excluir carpetas de desarrollo - Historial de commits anteriores se mantiene intacto 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
621 B
PHP
22 lines
621 B
PHP
<?php
|
|
/**
|
|
* The comments template file
|
|
*
|
|
* This file is intentionally left empty as comments are disabled for this theme.
|
|
*
|
|
* Comments functionality has been disabled to streamline the user experience
|
|
* and reduce spam. If you need to enable comments in the future, you can add
|
|
* the standard WordPress comments template code here.
|
|
*
|
|
* To enable comments:
|
|
* 1. Remove or comment out the return statement below
|
|
* 2. Add the WordPress comments template code
|
|
* 3. Update the theme's comment settings in functions.php
|
|
*
|
|
* @package Apus_Theme
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
// Comments are disabled for this theme
|
|
return;
|