2003-12-23 21:47:03 +00:00
|
|
|
<?php
|
2008-08-14 06:30:38 +00:00
|
|
|
/**
|
2011-04-28 15:24:49 +00:00
|
|
|
* Add Link Administration Screen.
|
2008-08-14 06:30:38 +00:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
2013-09-25 00:18:11 +00:00
|
|
|
require_once( dirname( __FILE__ ) . '/admin.php' );
|
2003-12-23 21:47:03 +00:00
|
|
|
|
2009-08-02 02:23:54 +00:00
|
|
|
if ( ! current_user_can('manage_links') )
|
2016-06-29 15:16:29 +00:00
|
|
|
wp_die(__('Sorry, you are not allowed to add links to this site.'));
|
2009-08-02 02:23:54 +00:00
|
|
|
|
2008-10-17 20:02:03 +00:00
|
|
|
$title = __('Add New Link');
|
2008-09-25 19:33:53 +00:00
|
|
|
$parent_file = 'link-manager.php';
|
2005-01-06 09:46:52 +00:00
|
|
|
|
2013-02-16 18:28:41 +00:00
|
|
|
wp_reset_vars( array('action', 'cat_id', 'link_id' ) );
|
2004-04-28 05:34:50 +00:00
|
|
|
|
2008-01-31 20:04:54 +00:00
|
|
|
wp_enqueue_script('link');
|
2008-03-10 05:44:56 +00:00
|
|
|
wp_enqueue_script('xfn');
|
2008-01-31 20:04:54 +00:00
|
|
|
|
2012-04-11 02:20:51 +00:00
|
|
|
if ( wp_is_mobile() )
|
|
|
|
wp_enqueue_script( 'jquery-touch-punch' );
|
|
|
|
|
2008-02-25 06:30:38 +00:00
|
|
|
$link = get_default_link_to_edit();
|
2013-09-25 00:18:11 +00:00
|
|
|
include( ABSPATH . 'wp-admin/edit-link-form.php' );
|
2003-12-23 21:47:03 +00:00
|
|
|
|
2013-09-25 00:18:11 +00:00
|
|
|
require( ABSPATH . 'wp-admin/admin-footer.php' );
|