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 | |
| //Add in new Widget areas | |
| function genesischild_extra_widgets() { | |
| genesis_register_sidebar( array( | |
| 'id' => 'preheaderleft', | |
| 'name' => __( 'preHeaderLeft', 'genesischild' ), | |
| 'description' => __( 'This is the preheader Left area', 'genesischild' ), | |
| 'before_widget' => '<div class="first one-half preheaderleft">', | |
| 'after_widget' => '</div>', |
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 | |
| /* | |
| * PDO DATABASE CLASS | |
| * Connects Database Using PDO | |
| * Creates Prepeared Statements | |
| * Binds params to values | |
| * Returns rows and results | |
| */ | |
| class Database { | |
| private $host = DB_HOST; |