X7ROOT File Manager
Current Path:
/home/stepirbf/xprintkenya.com/wp-admin
home
/
stepirbf
/
xprintkenya.com
/
wp-admin
/
ðŸ“
..
📄
about.php
(16.59 KB)
📄
admin-ajax.php
(5.03 KB)
📄
admin-footer.php
(2.77 KB)
📄
admin-functions.php
(406 B)
📄
admin-header.php
(8.86 KB)
📄
admin-post.php
(2.02 KB)
📄
admin.php
(12.27 KB)
📄
async-upload.php
(4.74 KB)
📄
authorize-application.php
(10.09 KB)
📄
comment.php
(11.35 KB)
📄
comment_section_1744148557.php
(1.99 KB)
📄
credits.php
(3.75 KB)
ðŸ“
css
📄
custom-background.php
(416 B)
📄
custom-header.php
(426 B)
📄
customize.php
(10.87 KB)
📄
edit-comments.php
(14.38 KB)
📄
edit-form-advanced.php
(28.86 KB)
📄
edit-form-blocks.php
(12.96 KB)
📄
edit-form-comment.php
(8.34 KB)
📄
edit-link-form.php
(6.21 KB)
📄
edit-tag-form.php
(10.44 KB)
📄
edit-tags.php
(22 KB)
📄
edit.php
(19.48 KB)
📄
erase-personal-data.php
(7.33 KB)
📄
error_log
(28.31 KB)
📄
export-personal-data.php
(7.75 KB)
📄
export.php
(11.02 KB)
📄
freedoms.php
(4.5 KB)
ðŸ“
images
📄
import.php
(7.48 KB)
ðŸ“
includes
📄
index.php
(7.68 KB)
📄
install-helper.php
(6.8 KB)
📄
install.php
(17.1 KB)
ðŸ“
js
📄
link-add.php
(938 B)
📄
link-manager.php
(4.26 KB)
📄
link-parse-opml.php
(2.63 KB)
📄
link.php
(2.89 KB)
📄
load-scripts.php
(2.02 KB)
📄
load-styles.php
(2.92 KB)
ðŸ“
maint
📄
media-new.php
(3.18 KB)
📄
media-upload.php
(3.49 KB)
📄
media.php
(819 B)
📄
menu-header.php
(9.83 KB)
📄
menu.php
(16.67 KB)
📄
moderation.php
(307 B)
📄
ms-admin.php
(196 B)
📄
ms-delete-site.php
(4.19 KB)
📄
ms-edit.php
(216 B)
📄
ms-options.php
(229 B)
📄
ms-sites.php
(215 B)
📄
ms-themes.php
(217 B)
📄
ms-upgrade-network.php
(219 B)
📄
ms-users.php
(215 B)
📄
my-sites.php
(4.74 KB)
📄
nav-menus.php
(48.12 KB)
ðŸ“
network
📄
network.php
(5.39 KB)
📄
options-discussion.php
(15.4 KB)
📄
options-general.php
(21.51 KB)
📄
options-head.php
(548 B)
📄
options-media.php
(6.35 KB)
📄
options-permalink.php
(21.21 KB)
📄
options-privacy.php
(9.95 KB)
📄
options-reading.php
(10.03 KB)
📄
options-writing.php
(9.1 KB)
📄
options.php
(13.45 KB)
📄
plugin-editor.php
(13.42 KB)
📄
plugin-install.php
(6.96 KB)
📄
plugins.php
(30.01 KB)
📄
post-new.php
(2.7 KB)
📄
post.php
(9.97 KB)
📄
press-this.php
(2.34 KB)
📄
privacy-policy-guide.php
(3.67 KB)
📄
privacy.php
(2.48 KB)
📄
profile.php
(283 B)
📄
revision.php
(5.71 KB)
📄
setup-config.php
(17.48 KB)
📄
site-editor.php
(7.05 KB)
📄
site-health-info.php
(3.99 KB)
📄
site-health.php
(10.2 KB)
📄
term.php
(2.2 KB)
📄
theme-editor.php
(15.42 KB)
📄
theme-install.php
(23.37 KB)
📄
themes.php
(46.95 KB)
📄
tools.php
(3.43 KB)
📄
update-core.php
(45.43 KB)
📄
update.php
(12.79 KB)
📄
upgrade-functions.php
(341 B)
📄
upgrade.php
(5.57 KB)
📄
upload.php
(14.85 KB)
ðŸ“
user
📄
user-edit.php
(39.6 KB)
📄
user-new.php
(23.97 KB)
📄
users.php
(23.29 KB)
📄
widgets-form-blocks.php
(4.97 KB)
📄
widgets-form.php
(19.17 KB)
📄
widgets.php
(1.09 KB)
Editing: term.php
<?php /** * Edit Term Administration Screen. * * @package WordPress * @subpackage Administration * @since 4.5.0 */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( empty( $_REQUEST['tag_ID'] ) ) { $sendback = admin_url( 'edit-tags.php' ); if ( ! empty( $taxnow ) ) { $sendback = add_query_arg( array( 'taxonomy' => $taxnow ), $sendback ); } if ( 'post' !== get_current_screen()->post_type ) { $sendback = add_query_arg( 'post_type', get_current_screen()->post_type, $sendback ); } wp_redirect( sanitize_url( $sendback ) ); exit; } $tag_ID = absint( $_REQUEST['tag_ID'] ); $tag = get_term( $tag_ID, $taxnow, OBJECT, 'edit' ); if ( ! $tag instanceof WP_Term ) { wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); } $tax = get_taxonomy( $tag->taxonomy ); $taxonomy = $tax->name; $title = $tax->labels->edit_item; if ( ! in_array( $taxonomy, get_taxonomies( array( 'show_ui' => true ) ), true ) || ! current_user_can( 'edit_term', $tag->term_id ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>', 403 ); } $post_type = get_current_screen()->post_type; // Default to the first object_type associated with the taxonomy if no post type was passed. if ( empty( $post_type ) ) { $post_type = reset( $tax->object_type ); } if ( 'post' !== $post_type ) { $parent_file = ( 'attachment' === $post_type ) ? 'upload.php' : "edit.php?post_type=$post_type"; $submenu_file = "edit-tags.php?taxonomy=$taxonomy&post_type=$post_type"; } elseif ( 'link_category' === $taxonomy ) { $parent_file = 'link-manager.php'; $submenu_file = 'edit-tags.php?taxonomy=link_category'; } else { $parent_file = 'edit.php'; $submenu_file = "edit-tags.php?taxonomy=$taxonomy"; } get_current_screen()->set_screen_reader_content( array( 'heading_pagination' => $tax->labels->items_list_navigation, 'heading_list' => $tax->labels->items_list, ) ); wp_enqueue_script( 'admin-tags' ); require_once ABSPATH . 'wp-admin/admin-header.php'; require ABSPATH . 'wp-admin/edit-tag-form.php'; require_once ABSPATH . 'wp-admin/admin-footer.php';
Upload File
Create Folder