Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

22 wiersze
364 B

  1. <?php
  2. /**
  3. * Loads the WordPress environment and template.
  4. *
  5. * @package WordPress
  6. */
  7. if ( !isset($wp_did_header) ) {
  8. $wp_did_header = true;
  9. // Load the WordPress library.
  10. require_once( dirname(__FILE__) . '/wp-load.php' );
  11. // Set up the WordPress query.
  12. wp();
  13. // Load the theme template.
  14. require_once( ABSPATH . WPINC . '/template-loader.php' );
  15. }