Organizing Your Pages

I think you may be confusing parent pages (hierarchy) with page slugs (the URL). Parent pages are designed to allow you to programmatically build things like menus/submenus and breadcrumbs. Whereas a page slug is the visual representation in the URL. Many times, of course, I’d recommend you make your page slug match your hierarchy (for … Read more

Edit custom HTML page from WP admin dashboard

If you want content to be editable via the dashboard, a static HTML file is not the road you want to take. Instead, create a custom page template, from which you call a custom header and footer. Both get_header() as well as get_footer() take an optional $name parameter to specify a specific template to call … Read more