mirror of
https://github.com/YunoHost-Apps/wordpress_ynh.git
synced 2024-09-03 20:36:10 +02:00
18 lines
296 B
PHP
18 lines
296 B
PHP
<?php
|
|
/**
|
|
* User Profile Administration Screen.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/**
|
|
* This is a profile page.
|
|
*
|
|
* @since 2.5.0
|
|
* @var bool
|
|
*/
|
|
define('IS_PROFILE_PAGE', true);
|
|
|
|
/** Load User Editing Page */
|
|
require_once( dirname( __FILE__ ) . '/user-edit.php' );
|