/home/fortodpl/forcutestyles.com/wp-admin
NameSizeModeActions
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
maint/-0755rm
network/-0755rm
user/-0755rm
about.php164850644editdlrm
admin-ajax.php51460644editdlrm
admin-footer.php28040644editdlrm
admin-functions.php4720644editdlrm
admin-header.php92840644editdlrm
admin-post.php20210644editdlrm
admin.php129350644editdlrm
async-upload.php56040644editdlrm
authorize-application.php103350644editdlrm
comment.php116430644editdlrm
contribute.php56560644editdlrm
credits.php41410644editdlrm
custom-background.php4820644editdlrm
custom-header.php4920644editdlrm
customize.php115860644editdlrm
edit-comments.php144840644editdlrm
edit-form-advanced.php294810644editdlrm
edit-form-blocks.php155280644editdlrm
edit-form-comment.php139800644editdlrm
edit-link-form.php63470644editdlrm
edit-tag-form.php106580644editdlrm
edit-tags.php225100644editdlrm
edit.php199520644editdlrm
erase-personal-data.php75050644editdlrm
export-personal-data.php79400644editdlrm
export.php112650644editdlrm
font-library.php14800644editdlrm
freedoms.php45740644editdlrm
import.php77660644editdlrm
index.php78640644editdlrm
install-helper.php69610644editdlrm
install.php183750644editdlrm
link-add.php9340644editdlrm
link-manager.php43610644editdlrm
link-parse-opml.php27210644editdlrm
link.php29570644editdlrm
load-scripts.php20700644editdlrm
load-styles.php29950644editdlrm
media-new.php32490644editdlrm
media-upload.php36680644editdlrm
media.php8190644editdlrm
menu-header.php100520644editdlrm
menu.php181340644editdlrm
moderation.php3070644editdlrm
ms-admin.php1960644editdlrm
ms-delete-site.php46130644editdlrm
ms-edit.php2160644editdlrm
ms-options.php2290644editdlrm
ms-sites.php2150644editdlrm
ms-themes.php2170644editdlrm
ms-upgrade-network.php2190644editdlrm
ms-users.php2150644editdlrm
my-sites.php48310644editdlrm
nav-menus.php501990644editdlrm
network.php55230644editdlrm
options-connectors.php15430644editdlrm
options-discussion.php164030644editdlrm
options-general.php228550644editdlrm
options-head.php6140644editdlrm
options-media.php66400644editdlrm
options-permalink.php224910644editdlrm
options-privacy.php107040644editdlrm
options-reading.php101980644editdlrm
options-writing.php94040644editdlrm
options.php142660644editdlrm
plugin-editor.php140710644editdlrm
plugin-install.php74330644editdlrm
plugins.php307440644editdlrm
post-new.php27680644editdlrm
post.php108210644editdlrm
press-this.php24700644editdlrm
privacy-policy-guide.php37560644editdlrm
privacy.php25120644editdlrm
profile.php2830644editdlrm
revision.php58360644editdlrm
setup-config.php179280644editdlrm
site-editor.php124830644editdlrm
site-health-info.php41730644editdlrm
site-health.php104270644editdlrm
term.php22490644editdlrm
theme-editor.php172790644editdlrm
theme-install.php243150644editdlrm
themes.php497280644editdlrm
tools.php35140644editdlrm
update-core.php462020644editdlrm
update.php130620644editdlrm
upgrade-functions.php3410644editdlrm
upgrade.php63900644editdlrm
upload.php152920644editdlrm
user-edit.php418440644editdlrm
user-new.php246640644editdlrm
users.php256980644editdlrm
widgets-form-blocks.php52350644editdlrm
widgets-form.php195880644editdlrm
widgets.php11120644editdlrm
Edit: /home/fortodpl/forcutestyles.com/wp-admin/options-privacy.php (10704B)
add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

' . __( 'The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.' ) . '

' . '

' . __( 'This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.' ) . '

', ) ); get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . '

' . __( 'Documentation on Privacy Settings' ) . '

' ); if ( ! empty( $action ) ) { check_admin_referer( $action ); if ( 'set-privacy-page' === $action ) { $previous_privacy_policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' ); $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_message_type = 'success'; if ( $privacy_policy_page_id ) { $privacy_page_updated_message = __( 'Privacy Policy page updated successfully.' ); /* * 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 update your menus!' ), esc_url( add_query_arg( 'autofocus[panel]', 'nav_menus', admin_url( 'customize.php' ) ) ) ); } } elseif ( $previous_privacy_policy_page_id ) { // A previously set Privacy Policy page was cleared. $privacy_page_updated_message = __( 'Privacy Policy page removed.' ); } else { // No Privacy Policy page was set before, and none is set now. $privacy_page_updated_message = __( 'No Privacy Policy page is currently set.' ); $privacy_page_message_type = 'info'; } add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', $privacy_page_updated_message, $privacy_page_message_type ); } 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 restore the current page.' ), 'edit.php?post_status=trash&post_type=page' ), 'error' ); } else { $privacy_policy_page_exists = true; } } } $parent_file = 'options-general.php'; wp_enqueue_script( 'privacy-tools' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>


'error', 'additional_classes' => array( 'hide-if-js' ), ) ); ?>

$privacy_policy_page_id, 'action' => 'edit', ), admin_url( 'post.php' ) ); $view_href = get_permalink( $privacy_policy_page_id ); ?> Edit or view 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. */ __( 'Edit or preview your Privacy Policy page content.' ), esc_url( $edit_href ), esc_url( $view_href ) ); } ?> Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.' ), esc_url( admin_url( 'options-privacy.php?tab=policyguide' ) ), '', '' ); ?>


'page', 'posts_per_page' => 1, 'post_status' => array( 'publish', 'draft', ), ) ); ?>