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
| // ** MySQL settings - You can get this info from your web host ** // | |
| /** The name of the database for WordPress */ | |
| define('DB_NAME', 'database_name_here'); | |
| /** MySQL database username */ | |
| define('DB_USER', 'username_here'); | |
| /** MySQL database password */ | |
| define('DB_PASSWORD', 'password_here'); |
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 | |
| if ( have_posts() ) : | |
| while ( have_posts() ) : | |
| the_post(); | |
| //contenido del loop (template tags, html, etc) | |
| endwhile; | |
| endif; | |
| ?> |
NewerOlder