/
home
/
altere25
/
highwoodoutdoorpool.com
/
wp-admin
/
/home/altere25/highwoodoutdoorpool.com/wp-admin
mkdir
upload
Name
Size
Mode
Actions
css/
-
0755
rm
images/
-
0755
rm
includes/
-
0755
rm
js/
-
0755
rm
maint/
-
0755
rm
network/
-
0755
rm
user/
-
0755
rm
about.php
29352
0644
edit
dl
rm
admin-ajax.php
4654
0644
edit
dl
rm
admin-footer.php
2832
0644
edit
dl
rm
admin-functions.php
406
0644
edit
dl
rm
admin-header.php
8194
0644
edit
dl
rm
admin-post.php
1671
0644
edit
dl
rm
admin.php
12100
0644
edit
dl
rm
async-upload.php
3798
0644
edit
dl
rm
comment.php
10983
0644
edit
dl
rm
credits.php
4658
0644
edit
dl
rm
custom-background.php
416
0644
edit
dl
rm
custom-header.php
426
0644
edit
dl
rm
customize.php
9621
0644
edit
dl
rm
edit-comments.php
13740
0644
edit
dl
rm
edit-form-advanced.php
28793
0644
edit
dl
rm
edit-form-blocks.php
14060
0644
edit
dl
rm
edit-form-comment.php
8105
0644
edit
dl
rm
edit-link-form.php
6225
0644
edit
dl
rm
edit-tag-form.php
10100
0644
edit
dl
rm
edit-tags.php
21904
0644
edit
dl
rm
edit.php
18456
0644
edit
dl
rm
erase-personal-data.php
3227
0644
edit
dl
rm
error_log
984
0644
edit
dl
rm
export-personal-data.php
3202
0644
edit
dl
rm
export.php
10951
0644
edit
dl
rm
freedoms.php
4604
0644
edit
dl
rm
import.php
7519
0644
edit
dl
rm
index.php
5889
0644
edit
dl
rm
install-helper.php
5906
0644
edit
dl
rm
install.php
17022
0644
edit
dl
rm
link-add.php
711
0644
edit
dl
rm
link-manager.php
4188
0644
edit
dl
rm
link-parse-opml.php
2613
0644
edit
dl
rm
link.php
2730
0644
edit
dl
rm
load-scripts.php
1689
0644
edit
dl
rm
load-styles.php
2297
0644
edit
dl
rm
media-new.php
3199
0644
edit
dl
rm
media-upload.php
3362
0644
edit
dl
rm
media.php
5598
0644
edit
dl
rm
menu-header.php
9752
0644
edit
dl
rm
menu.php
14490
0644
edit
dl
rm
moderation.php
307
0644
edit
dl
rm
ms-admin.php
196
0644
edit
dl
rm
ms-delete-site.php
4183
0644
edit
dl
rm
ms-edit.php
216
0644
edit
dl
rm
ms-options.php
223
0644
edit
dl
rm
ms-sites.php
215
0644
edit
dl
rm
ms-themes.php
217
0644
edit
dl
rm
ms-upgrade-network.php
219
0644
edit
dl
rm
ms-users.php
215
0644
edit
dl
rm
my-sites.php
4641
0644
edit
dl
rm
nav-menus.php
43907
0644
edit
dl
rm
network.php
5378
0644
edit
dl
rm
options-discussion.php
15300
0644
edit
dl
rm
options-general.php
14939
0644
edit
dl
rm
options-head.php
492
0644
edit
dl
rm
options-media.php
6237
0644
edit
dl
rm
options-permalink.php
19206
0644
edit
dl
rm
options-privacy.php
8072
0644
edit
dl
rm
options-reading.php
9700
0644
edit
dl
rm
options-writing.php
8623
0644
edit
dl
rm
options.php
12302
0644
edit
dl
rm
plugin-editor.php
13359
0644
edit
dl
rm
plugin-install.php
6388
0644
edit
dl
rm
plugins.php
24380
0644
edit
dl
rm
post-new.php
2695
0644
edit
dl
rm
post.php
9963
0644
edit
dl
rm
press-this.php
2386
0644
edit
dl
rm
privacy-policy-guide.php
833
0644
edit
dl
rm
privacy.php
2346
0644
edit
dl
rm
profile.php
283
0644
edit
dl
rm
revision.php
5194
0644
edit
dl
rm
setup-config.php
15901
0644
edit
dl
rm
site-health-info.php
5776
0644
edit
dl
rm
site-health.php
5328
0644
edit
dl
rm
term.php
2248
0644
edit
dl
rm
theme-editor.php
15146
0644
edit
dl
rm
theme-install.php
15200
0644
edit
dl
rm
themes.php
23626
0644
edit
dl
rm
tools.php
3452
0644
edit
dl
rm
update-core.php
33796
0644
edit
dl
rm
update.php
10931
0644
edit
dl
rm
upgrade-functions.php
341
0644
edit
dl
rm
upgrade.php
5654
0644
edit
dl
rm
upload.php
13919
0644
edit
dl
rm
user-edit.php
29213
0644
edit
dl
rm
user-new.php
22333
0644
edit
dl
rm
users.php
19900
0644
edit
dl
rm
widgets.php
19741
0644
edit
dl
rm
Edit:
/home/altere25/highwoodoutdoorpool.com/wp-admin/link.php
(2730B)
<?php /** * Manage link administration actions. * * This page is accessed by the link management pages and handles the forms and * Ajax processes for link actions. * * @package WordPress * @subpackage Administration */ /** Load WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; wp_reset_vars( array( 'action', 'cat_id', 'link_id' ) ); if ( ! current_user_can( 'manage_links' ) ) { wp_link_manager_disabled_message(); } if ( ! empty( $_POST['deletebookmarks'] ) ) { $action = 'deletebookmarks'; } if ( ! empty( $_POST['move'] ) ) { $action = 'move'; } if ( ! empty( $_POST['linkcheck'] ) ) { $linkcheck = $_POST['linkcheck']; } $this_file = admin_url( 'link-manager.php' ); switch ( $action ) { case 'deletebookmarks': check_admin_referer( 'bulk-bookmarks' ); // For each link id (in $linkcheck[]) change category to selected value. if ( count( $linkcheck ) == 0 ) { wp_redirect( $this_file ); exit; } $deleted = 0; foreach ( $linkcheck as $link_id ) { $link_id = (int) $link_id; if ( wp_delete_link( $link_id ) ) { $deleted++; } } wp_redirect( "$this_file?deleted=$deleted" ); exit; case 'move': check_admin_referer( 'bulk-bookmarks' ); // For each link id (in $linkcheck[]) change category to selected value. if ( count( $linkcheck ) == 0 ) { wp_redirect( $this_file ); exit; } $all_links = join( ',', $linkcheck ); /* * Should now have an array of links we can change: * $q = $wpdb->query("update $wpdb->links SET link_category='$category' WHERE link_id IN ($all_links)"); */ wp_redirect( $this_file ); exit; case 'add': check_admin_referer( 'add-bookmark' ); $redir = wp_get_referer(); if ( add_link() ) { $redir = add_query_arg( 'added', 'true', $redir ); } wp_redirect( $redir ); exit; case 'save': $link_id = (int) $_POST['link_id']; check_admin_referer( 'update-bookmark_' . $link_id ); edit_link( $link_id ); wp_redirect( $this_file ); exit; case 'delete': $link_id = (int) $_GET['link_id']; check_admin_referer( 'delete-bookmark_' . $link_id ); wp_delete_link( $link_id ); wp_redirect( $this_file ); exit; case 'edit': wp_enqueue_script( 'link' ); wp_enqueue_script( 'xfn' ); if ( wp_is_mobile() ) { wp_enqueue_script( 'jquery-touch-punch' ); } $parent_file = 'link-manager.php'; $submenu_file = 'link-manager.php'; $title = __( 'Edit Link' ); $link_id = (int) $_GET['link_id']; $link = get_link_to_edit( $link_id ); if ( ! $link ) { wp_die( __( 'Link not found.' ) ); } require ABSPATH . 'wp-admin/edit-link-form.php'; require_once ABSPATH . 'wp-admin/admin-footer.php'; break; default: break; }
Save
cmd:
run