Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. /**
  3. * Local configuration information.
  4. *
  5. * If you are working in a local/desktop development environment and want to
  6. * keep your config separate, we recommend using a 'wp-config-local.php' file,
  7. * which you should also make sure you .gitignore.
  8. */
  9.  
  10. if (file_exists(dirname(__FILE__) . '/wp-config-local.php')) {
  11. require_once(dirname(__FILE__) . '/wp-config-local.php');
  12. }
  13.  
  14. /* Absolute path to the WordPress directory. */
  15. if ( !defined('ABSPATH') )
  16. define('ABSPATH', dirname(__FILE__) . '/');
  17.  
  18. /* Sets up WordPress vars and included files. */
  19. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement