wp/wp-blog-header.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
--- a/wp/wp-blog-header.php	Tue Oct 22 16:11:46 2019 +0200
+++ b/wp/wp-blog-header.php	Tue Dec 15 13:49:49 2020 +0100
@@ -10,12 +10,12 @@
 	$wp_did_header = true;
 
 	// Load the WordPress library.
-	require_once( dirname( __FILE__ ) . '/wp-load.php' );
+	require_once __DIR__ . '/wp-load.php';
 
 	// Set up the WordPress query.
 	wp();
 
 	// Load the theme template.
-	require_once( ABSPATH . WPINC . '/template-loader.php' );
+	require_once ABSPATH . WPINC . '/template-loader.php';
 
 }