71 * Change this to true to enable the display of notices during development. |
71 * Change this to true to enable the display of notices during development. |
72 * It is strongly recommended that plugin and theme developers use WP_DEBUG |
72 * It is strongly recommended that plugin and theme developers use WP_DEBUG |
73 * in their development environments. |
73 * in their development environments. |
74 * |
74 * |
75 * For information on other constants that can be used for debugging, |
75 * For information on other constants that can be used for debugging, |
76 * visit the Codex. |
76 * visit the documentation. |
77 * |
77 * |
78 * @link https://codex.wordpress.org/Debugging_in_WordPress |
78 * @link https://wordpress.org/support/article/debugging-in-wordpress/ |
79 */ |
79 */ |
80 define( 'WP_DEBUG', false ); |
80 define( 'WP_DEBUG', false ); |
81 |
81 |
82 /* That's all, stop editing! Happy publishing. */ |
82 /* That's all, stop editing! Happy publishing. */ |
83 |
83 |
84 /** Absolute path to the WordPress directory. */ |
84 /** Absolute path to the WordPress directory. */ |
85 if ( ! defined( 'ABSPATH' ) ) { |
85 if ( ! defined( 'ABSPATH' ) ) { |
86 define( 'ABSPATH', dirname( __FILE__ ) . '/' ); |
86 define( 'ABSPATH', __DIR__ . '/' ); |
87 } |
87 } |
88 |
88 |
89 /** Sets up WordPress vars and included files. */ |
89 /** Sets up WordPress vars and included files. */ |
90 require_once( ABSPATH . 'wp-settings.php' ); |
90 require_once ABSPATH . 'wp-settings.php'; |