blob: 4b6493b548f55821c75145fb86ba52c10df6fa70 [file] [log] [blame]
<?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');
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');
?>