<?php /** * The template for displaying the header. * * @package GeneratePress */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-52HFF1TP39"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-52HFF1TP39'); </script> <meta charset="<?php bloginfo( 'charset' ); ?>"> <?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 hook. /** * generate_before_header hook. * * @since 0.1 * * @hooked generate_do_skip_to_content_link - 2 * @hooked generate_top_bar - 5 * @hooked generate_add_navigation_before_header - 5 */ do_action( 'generate_before_header' ); /** * generate_header hook. * * @since 1.3.42 * * @hooked generate_construct_header - 10 */ do_action( 'generate_header' ); /** * generate_after_header hook. * * @since 0.1 * * @hooked generate_featured_page_header - 10 */ do_action( 'generate_after_header' ); ?> <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' );

Sample Page

This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!