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 | |
| function morderna_theme_wedgets(){ | |
| register_sidebar(array( | |
| 'name' => 'Footer Wedgets', | |
| 'id' => 'footer_wid', | |
| 'description' => 'Use this wedget for your side footer content ', | |
| 'before_widget' => '<div class="col-lg-3"><div class="widget footer_wedget">', | |
| 'after_widget' => '</div></div>', | |
| 'before_title' => '<h5 class="widgetheading">', |
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 | |
| // Connection data (server_address, database, name, poassword) | |
| $hostdb = 'localhost'; | |
| $namedb = 'test'; | |
| $userdb = 'root'; | |
| $passdb = ''; |