mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
a1449b1ebc
git-svn-id: http://svn.automattic.com/wordpress/trunk@7196 1a063a9b-81f0-0310-95a4-ce76da25c4cd
30 lines
722 B
PHP
30 lines
722 B
PHP
<?php
|
|
require_once('admin.php');
|
|
|
|
$title = __('Add Link');
|
|
$this_file = 'link-manager.php';
|
|
$parent_file = 'post-new.php';
|
|
|
|
|
|
wp_reset_vars(array('action', 'cat_id', 'linkurl', 'name', 'image',
|
|
'description', 'visible', 'target', 'category', 'link_id',
|
|
'submit', 'order_by', 'links_show_cat_id', 'rating', 'rel',
|
|
'notes', 'linkcheck[]'));
|
|
|
|
wp_enqueue_script('link');
|
|
wp_enqueue_script('xfn');
|
|
wp_enqueue_script('thickbox');
|
|
|
|
require('admin-header.php');
|
|
?>
|
|
|
|
<?php if ($_GET['added'] && '' != $_POST['link_name']) : ?>
|
|
<div id="message" class="updated fade"><p><?php _e('Link added.'); ?></p></div>
|
|
<?php endif; ?>
|
|
|
|
<?php
|
|
$link = get_default_link_to_edit();
|
|
include('edit-link-form.php');
|
|
|
|
require('admin-footer.php');
|
|
?>
|