Files
WordPress/wp-admin/link-add.php
T

30 lines
722 B
PHP
Raw Normal View History

<?php
require_once('admin.php');
$title = __('Add Link');
$this_file = 'link-manager.php';
$parent_file = 'post-new.php';
2005-01-06 09:46:52 +00:00
2006-07-03 19:03:37 +00:00
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[]'));
2004-04-28 05:34:50 +00:00
wp_enqueue_script('link');
wp_enqueue_script('xfn');
wp_enqueue_script('thickbox');
require('admin-header.php');
?>
2004-08-22 23:24:50 +00:00
<?php if ($_GET['added'] && '' != $_POST['link_name']) : ?>
2006-07-06 04:27:45 +00:00
<div id="message" class="updated fade"><p><?php _e('Link added.'); ?></p></div>
2004-04-28 05:34:50 +00:00
<?php endif; ?>
2004-04-15 09:15:56 +00:00
2005-09-19 00:47:58 +00:00
<?php
$link = get_default_link_to_edit();
include('edit-link-form.php');
require('admin-footer.php');
?>