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: temawordpress | |
| Author: Mac32 | |
| Author URI: www.author.com | |
| Description: primer tema en wordpress | |
| Version: 0.0.1 | |
| Tags: wordpress basico | |
| License: GPL; | |
| License URI: www.licencia.com | |
| */ |
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
| <!DOCTYPE html> | |
| <html <?php language_attributes(); ?>> <!--función de lenguaje, en lugar de colocar lang="es" se le coloca el languaje_attributes para indicar el idioma--> | |
| <head> | |
| <!--Establece la codificación de caracteres en UTF-8, el bloginfo se utiliza para hacer consultas a WP en este caso la codificación de caracteres (charset)--> | |
| <meta charset="<?php bloginfo('charset'); ?>"> | |
| <!-- Meta para adaptación a dispositivos móviles --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
NewerOlder