Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * The template for displaying all pages.
- *
- * This is the template that displays all pages by default.
- * Please note that this is the WordPress construct of pages
- * and that other 'pages' on your WordPress site will use a
- * different template.
- *
- * @package GeneratePress
- */
- if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
- }
- ?><!DOCTYPE html>
- <html <?php language_attributes(); ?>>
- <head>
- <meta charset="<?php bloginfo( 'charset' ); ?>">
- <link rel="profile" href="https://gmpg.org/xfn/11">
- <?php wp_head(); ?>
- </head>
- <body <?php body_class(); ?> <?php generate_do_microdata( 'body' ); ?>>
- <?php
- /**
- * wp_body_open hook.
- *
- * @since 2.3
- */
- do_action( 'wp_body_open' ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- core WP ho
- ?>
- <div <?php generate_do_attr( 'page' ); ?>>
- <?php
- /**
- * generate_inside_site_container hook.
- *
- * @since 2.4
- */
- do_action( 'generate_inside_site_container' );
- ?>
- <div <?php generate_do_attr( 'site-content' ); ?>>
- <?php
- /**
- * generate_inside_container hook.
- *
- * @since 0.1
- */
- do_action( 'generate_inside_container' );?>
- <div <?php generate_do_attr( 'content' ); ?>>
- <main <?php generate_do_attr( 'main' ); ?>>
- <?php
- /**
- * generate_before_main_content hook.
- *
- * @since 0.1
- */
- do_action( 'generate_before_main_content' );
- if ( generate_has_default_loop() ) {
- while ( have_posts() ) :
- the_post();
- generate_do_template_part( 'page' );
- endwhile;
- }
- /**
- * generate_after_main_content hook.
- *
- * @since 0.1
- */
- do_action( 'generate_after_main_content' );
- ?>
- </main>
- </div>
- <?php
- /**
- * generate_after_primary_content_area hook.
- *
- * @since 2.0
- */
- do_action( 'generate_after_primary_content_area' );
- generate_construct_sidebars();
- get_footer();
Advertisement
Add Comment
Please, Sign In to add comment