wordcamp-bristol-2019/wp-admin/profile.php

19 lines
298 B
PHP
Raw Normal View History

2019-03-12 09:27:46 +00:00
<?php
/**
* User Profile Administration Screen.
*
* @package WordPress
* @subpackage Administration
*/
/**
* This is a profile page.
*
* @since 2.5.0
* @var bool
*/
2019-04-16 19:56:22 +00:00
define( 'IS_PROFILE_PAGE', true );
2019-03-12 09:27:46 +00:00
/** Load User Editing Page */
require_once( dirname( __FILE__ ) . '/user-edit.php' );