source: trunk/www.guidonia.net/wp/wp-admin/link-add.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 614 bytes
Line 
1<?php
2/**
3 * Add Link Administration Panel.
4 *
5 * @package WordPress
6 * @subpackage Administration
7 */
8
9/** Load WordPress Administration Bootstrap */
10require_once('admin.php');
11
12$title = __('Add New Link');
13$parent_file = 'link-manager.php';
14
15wp_reset_vars(array('action', 'cat_id', 'linkurl', 'name', 'image',
16 'description', 'visible', 'target', 'category', 'link_id',
17 'submit', 'order_by', 'links_show_cat_id', 'rating', 'rel',
18 'notes', 'linkcheck[]'));
19
20wp_enqueue_script('link');
21wp_enqueue_script('xfn');
22
23$link = get_default_link_to_edit();
24include('edit-link-form.php');
25
26require('admin-footer.php');
27?>
Note: See TracBrowser for help on using the repository browser.