mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 02:41:27 +01:00
f854bdf2c0
git-svn-id: http://svn.automattic.com/wordpress/trunk@9068 1a063a9b-81f0-0310-95a4-ce76da25c4cd
22 lines
593 B
PHP
22 lines
593 B
PHP
<?php
|
|
/**
|
|
* Press This Administration Panel.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/** WordPress Administration Bootstrap */
|
|
require_once('admin.php');
|
|
|
|
$title = __('Press This');
|
|
|
|
require_once('admin-header.php');
|
|
?>
|
|
|
|
<div class="wrap">
|
|
<p><?php _e('Drag-and-drop the following link to your bookmarks bar or right click it and add it to your favorites for a posting shortcut.') ?></p>
|
|
<p><a href="<?php echo get_shortcut_link(); ?>" title="<?php echo attribute_escape(__('Press This')) ?>"><?php _e('Press This') ?></a></p>
|
|
</div>
|
|
|
|
<?php include('admin-footer.php'); ?>
|