Configura VS Code para que Live Server abra tus proyectos en Firefox Developer Edition.
📄 Archivo: .gitignore para proyectos WordPress
############################################################
# 🧠 WordPress Core (ignorar si no versionás el núcleo)
############################################################
wp-admin/
wp-includes/
/wp-*.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Theme Name: Gym Fitness | |
| Theme URI: | |
| Author: Juan Pablo De la torre Valdez | |
| Author URI: http://twitter.com/codigoconjuan | |
| Description: Theme Diseñado para el Gimnasio GymFitness | |
| Version: 1.0 | |
| License: GNU General Public License v2 or later | |
| License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
| Tags: Gym, gimnasio, flexbox, css grid, mobile first |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .menu-principal a::before, | |
| .menu-principal a::after { | |
| position: absolute; | |
| left: 0; | |
| content: ''; | |
| display: block; | |
| width: 100%; | |
| height: 50%; | |
| background-color: var(--primario); | |
| z-index: -1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Gym Fitness - Post Types | |
| Plugin URI: http://twitter.com/codigoconjuan | |
| Description: Añade Post Types al sitio Gym Fitness | |
| Version: 1.0.0 | |
| Author: Juan Pablo De la torre Valdez | |
| Author URI: http://twitter.com/codigoconjuan | |
| Text Domain: gymfitness | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // 🎨 Apariencia | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "Flatland Monokai", | |
| "editor.fontSize": 18, | |
| "editor.wordWrap": "on", | |
| "editor.cursorBlinking": "phase", | |
| // ❌ Quitar círculos/puntitos de espacios | |
| "editor.renderWhitespace": "none", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ============================================================ | |
| Starter CSS – Plantilla base para proyectos web | |
| Incluye buenas prácticas de box-sizing, tipografía y estilos globales | |
| ============================================================ */ | |
| /* 1. Box-sizing global */ | |
| html { | |
| box-sizing: border-box; | |
| font-size: 62.5%; /* 1rem = 10px */ | |
| } |
OlderNewer
{ // Configura Live Server para usar Firefox Developer Edition "liveServer.settings.AdvanceCustomBrowserCmdLine": "C:\\Program Files\\Firefox Developer Edition\\firefox.exe"