Changeset 6555
- Timestamp:
- 01/04/2008 08:18:55 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-categories.php
r6299 r6555 2 2 require_once('admin.php'); 3 3 4 $title = __(' Categories');5 $parent_file = ' link-manager.php';4 $title = __('Link Categories'); 5 $parent_file = 'edit.php'; 6 6 7 7 wp_enqueue_script( 'admin-categories' ); -
trunk/wp-admin/link-add.php
r6544 r6555 4 4 $title = __('Add Link'); 5 5 $this_file = 'link-manager.php'; 6 $parent_file = ' link-manager.php';6 $parent_file = 'post-new.php'; 7 7 8 8 -
trunk/wp-admin/link-import.php
r6551 r6555 4 4 5 5 require_once('admin.php'); 6 $parent_file = ' link-manager.php';6 $parent_file = 'edit.php'; 7 7 $title = __('Import Blogroll'); 8 $this_file = 'link-import.php';9 8 10 9 $step = $_POST['step']; -
trunk/wp-admin/link-manager.php
r6213 r6555 17 17 $order_by = 'order_name'; 18 18 19 $title = __('Manage Blogroll');20 $this_file = $parent_file = ' link-manager.php';19 $title = __('Manage Links'); 20 $this_file = $parent_file = 'edit.php'; 21 21 include_once ("./admin-header.php"); 22 22 … … 76 76 <div class="wrap"> 77 77 78 <h2><?php _e('Blogroll Management'); ?></h2> 78 <h2><?php _e('Manage Links'); ?></h2> 79 <p><a href="link-add.php"><?php _e('Add Link'); ?></a> | <a href="edit-link-categories.php"><?php _e('Link Categories'); ?></a> | <a href="link-import.php"><?php _e('Import Links'); ?></a></p> 79 80 <p><?php _e('Here you <a href="link-add.php">add links</a> to sites that you visit often and share them on your blog. When you have a list of links in your sidebar to other blogs, it’s called a “blogroll.”'); ?></p> 80 81 <form id="cats" method="get" action=""> -
trunk/wp-admin/menu.php
r6549 r6555 32 32 $submenu['post-new.php'][5] = array(__('Post'), 'edit_posts', 'post-new.php'); 33 33 $submenu['post-new.php'][10] = array(__('Page'), 'edit_pages', 'page-new.php'); 34 $submenu['post-new.php'][15] = array(__('Link'), 'manage_links', 'link-add.php'); 34 35 35 36 $submenu['edit-comments.php'][5] = array(__('Comments'), 'edit_posts', 'edit-comments.php'); … … 45 46 $submenu['edit.php'][30] = array(__('Import'), 'import', 'import.php'); 46 47 $submenu['edit.php'][35] = array(__('Export'), 'import', 'export.php'); 47 48 49 $submenu['edit.php'][50] = array(__('Add Link'), 'manage_links', 'link-add.php'); // todo: axe50 $submenu['edit.php'][55] = array(__('Import Links'), 'manage_links', 'link-import.php'); // todo: axe51 $submenu['edit.php'][60] = array(__('Categories'), 'manage_links', 'edit-link-categories.php'); // todo: axe52 48 53 49 if ( current_user_can('edit_users') ) {
Note: See TracChangeset
for help on using the changeset viewer.