menu-mappings.php
1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* Helper mapping between WP Admin pages and WordPress.com
*
* @package automattic/jetpack
*/
$common_mappings = array(
'upload.php' => 'https://wordpress.com/media/',
'edit.php' => 'https://wordpress.com/posts/',
'edit-comments.php' => 'https://wordpress.com/comments/',
'import.php' => 'https://wordpress.com/import/',
'edit.php?post_type=page' => 'https://wordpress.com/pages/',
'edit.php?post_type=post' => 'https://wordpress.com/posts/',
'users.php' => 'https://wordpress.com/people/team/',
'options-general.php' => 'https://wordpress.com/settings/general/',
'options-discussion.php' => 'https://wordpress.com/settings/discussion/',
'options-writing.php' => 'https://wordpress.com/settings/writing/',
'themes.php' => 'https://wordpress.com/themes/',
'edit-tags.php?taxonomy=category' => 'https://wordpress.com/settings/taxonomies/category/',
'edit-tags.php?taxonomy=post_tag' => 'https://wordpress.com/settings/taxonomies/post_tag/',
'edit.php?post_type=jetpack-portfolio' => 'https://wordpress.com/types/jetpack-portfolio/',
'edit.php?post_type=jetpack-testimonial' => 'https://wordpress.com/types/jetpack-testimonial/',
);
if (
/** This filter is documented in modules/masterbar/admin-menu/class-admin-menu.php */
apply_filters( 'calypso_use_modernized_reading_settings', false )
) {
$common_mappings['options-reading.php'] = 'https://wordpress.com/settings/reading/';
}
if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
// WPCOM Specific mappings.
$common_mappings['export.php'] = 'https://wordpress.com/export/';
}
return $common_mappings;