mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
41 lines
1.7 KiB
PHP
41 lines
1.7 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Privacy administration panel.
|
||
|
*
|
||
|
* @package WordPress
|
||
|
* @subpackage Administration
|
||
|
*/
|
||
|
|
||
|
/** WordPress Administration Bootstrap */
|
||
|
require_once( dirname( __FILE__ ) . '/admin.php' );
|
||
|
|
||
|
$title = __( 'Privacy' );
|
||
|
|
||
|
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
||
|
|
||
|
include( ABSPATH . 'wp-admin/admin-header.php' );
|
||
|
?>
|
||
|
<div class="wrap about-wrap">
|
||
|
|
||
|
<h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>
|
||
|
|
||
|
<p class="about-text"><?php printf( __( 'Thank you for updating to the latest version! WordPress %s helps you get your site set up the way you want it.' ), $display_version ); ?></p>
|
||
|
|
||
|
<div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
|
||
|
|
||
|
<h2 class="nav-tab-wrapper wp-clearfix">
|
||
|
<a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a>
|
||
|
<a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
|
||
|
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
|
||
|
<a href="privacy.php" class="nav-tab nav-tab-active"><?php _e( 'Privacy' ); ?></a>
|
||
|
</h2>
|
||
|
|
||
|
<p class="about-description"><?php _e( 'Your WordPress site may send anonymous data including, but not limited to, the list of installed plugins and themes to WordPress.org when requesting updates.' ); ?></p>
|
||
|
|
||
|
<p><?php _e( ' This data helps WordPress to protect your site by finding and automatically installing new updates. None of the information shared with the update server contains personally identifiable information.' ); ?></p>
|
||
|
|
||
|
<p><?php printf( __( 'We take privacy seriously. Learn more at <a href="%s">wordpress.org/privacy</a>.' ), __( 'https://wordpress.org/about/privacy/' ) ); ?></p>
|
||
|
|
||
|
</div>
|
||
|
<?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>
|