/home/desid573/public_html/magicride.ng/wp-admin
NameSizeModeActions
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
maint/-0755rm
network/-0755rm
user/-0755rm
about.php212750644editdlrm
admin-ajax.php46270644editdlrm
admin-footer.php26260644editdlrm
admin-functions.php4090644editdlrm
admin-header.php79050644editdlrm
admin-post.php16920644editdlrm
admin.php114190644editdlrm
async-upload.php36720644editdlrm
comment.php109020644editdlrm
credits.php56110644editdlrm
custom-background.php206030644editdlrm
custom-header.php474800644editdlrm
customize.php95670644editdlrm
edit-comments.php141370644editdlrm
edit-form-advanced.php281770644editdlrm
edit-form-blocks.php132000644editdlrm
edit-form-comment.php75180644editdlrm
edit-link-form.php61400644editdlrm
edit-tag-form.php95130644editdlrm
edit-tags.php209940644editdlrm
edit.php171630644editdlrm
error_log45780644editdlrm
export.php109270644editdlrm
freedoms.php60490644editdlrm
import.php74300644editdlrm
index.php58890644editdlrm
install-helper.php59070644editdlrm
install.php168180644editdlrm
link-add.php7270644editdlrm
link-manager.php40050644editdlrm
link-parse-opml.php24390644editdlrm
link.php27370644editdlrm
load-scripts.php16550644editdlrm
load-styles.php22620644editdlrm
media-new.php32090644editdlrm
media-upload.php33760644editdlrm
media.php56180644editdlrm
menu-header.php96930644editdlrm
menu.php141900644editdlrm
moderation.php3220644editdlrm
ms-admin.php2110644editdlrm
ms-delete-site.php40310644editdlrm
ms-edit.php2310644editdlrm
ms-options.php2380644editdlrm
ms-sites.php2300644editdlrm
ms-themes.php2320644editdlrm
ms-upgrade-network.php2340644editdlrm
ms-users.php2300644editdlrm
my-sites.php46570644editdlrm
nav-menus.php435850644editdlrm
network.php53620644editdlrm
options-discussion.php151190644editdlrm
options-general.php151210644editdlrm
options-head.php4920644editdlrm
options-media.php62360644editdlrm
options-permalink.php186540644editdlrm
options-reading.php86010644editdlrm
options-writing.php86100644editdlrm
options.php119180644editdlrm
plugin-editor.php132480644editdlrm
plugin-install.php63200644editdlrm
plugins.php242770644editdlrm
post-new.php26800644editdlrm
post.php95870644editdlrm
press-this.php23830644editdlrm
privacy.php80680644editdlrm
profile.php2980644editdlrm
revision.php51680644editdlrm
setup-config.php158080644editdlrm
site-health-info.php56320644editdlrm
site-health.php52960644editdlrm
term.php21140644editdlrm
theme-editor.php148150644editdlrm
theme-install.php151420644editdlrm
themes.php233050644editdlrm
tools.php26120644editdlrm
update-core.php325520644editdlrm
update.php107120644editdlrm
upgrade-functions.php3440644editdlrm
upgrade.php56540644editdlrm
upload.php136680644editdlrm
user-edit.php289210644editdlrm
user-new.php222800644editdlrm
users.php197160644editdlrm
widgets.php196020644editdlrm
Edit: /home/desid573/public_html/magicride.ng/wp-admin/customize.php (9567B)
' . __( 'You need a higher level of permission.' ) . '' . '

' . __( 'Sorry, you are not allowed to customize this site.' ) . '

', 403 ); } /** * @global WP_Scripts $wp_scripts * @global WP_Customize_Manager $wp_customize */ global $wp_scripts, $wp_customize; if ( $wp_customize->changeset_post_id() ) { $changeset_post = get_post( $wp_customize->changeset_post_id() ); if ( ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->edit_post, $changeset_post->ID ) ) { wp_die( '

' . __( 'You need a higher level of permission.' ) . '

' . '

' . __( 'Sorry, you are not allowed to edit this changeset.' ) . '

', 403 ); } $missed_schedule = ( 'future' === $changeset_post->post_status && get_post_time( 'G', true, $changeset_post ) < time() ); if ( $missed_schedule ) { /* * Note that an Ajax request spawns here instead of just calling `wp_publish_post( $changeset_post->ID )`. * * Because WP_Customize_Manager is not instantiated for customize.php with the `settings_previewed=false` * argument, settings cannot be reliably saved. Some logic short-circuits if the current value is the * same as the value being saved. This is particularly true for options via `update_option()`. * * By opening an Ajax request, this is avoided and the changeset is published. See #39221. */ $nonces = $wp_customize->get_nonces(); $request_args = array( 'nonce' => $nonces['save'], 'customize_changeset_uuid' => $wp_customize->changeset_uuid(), 'wp_customize' => 'on', 'customize_changeset_status' => 'publish', ); ob_start(); ?> ' . __( 'Your scheduled changes just published' ) . '' . '

' . __( 'Customize New Changes' ) . '

' . $script, 200 ); } if ( in_array( get_post_status( $changeset_post->ID ), array( 'publish', 'trash' ), true ) ) { wp_die( '

' . __( 'Something went wrong.' ) . '

' . '

' . __( 'This changeset cannot be further modified.' ) . '

' . '

' . __( 'Customize New Changes' ) . '

', 403 ); } } wp_reset_vars( array( 'url', 'return', 'autofocus' ) ); if ( ! empty( $url ) ) { $wp_customize->set_preview_url( wp_unslash( $url ) ); } if ( ! empty( $return ) ) { $wp_customize->set_return_url( wp_unslash( $return ) ); } if ( ! empty( $autofocus ) && is_array( $autofocus ) ) { $wp_customize->set_autofocus( wp_unslash( $autofocus ) ); } $registered = $wp_scripts->registered; $wp_scripts = new WP_Scripts; $wp_scripts->registered = $registered; add_action( 'customize_controls_print_scripts', 'print_head_scripts', 20 ); add_action( 'customize_controls_print_footer_scripts', '_wp_footer_scripts' ); add_action( 'customize_controls_print_styles', 'print_admin_styles', 20 ); /** * Fires when Customizer controls are initialized, before scripts are enqueued. * * @since 3.4.0 */ do_action( 'customize_controls_init' ); wp_enqueue_script( 'heartbeat' ); wp_enqueue_script( 'customize-controls' ); wp_enqueue_style( 'customize-controls' ); /** * Enqueue Customizer control scripts. * * @since 3.4.0 */ do_action( 'customize_controls_enqueue_scripts' ); // Let's roll. @header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); wp_user_settings(); _wp_admin_html_begin(); $body_class = 'wp-core-ui wp-customizer js'; if ( wp_is_mobile() ) : $body_class .= ' mobile'; ?> is_ios() ) { $body_class .= ' ios'; } if ( is_rtl() ) { $body_class .= ' rtl'; } $body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_user_locale() ) ) ); $admin_title = sprintf( $wp_customize->get_document_title_template(), __( 'Loading…' ) ); ?> <?php echo $admin_title; ?>
is_theme_active() ? __( 'Publish' ) : __( 'Activate & Publish' ); ?>
    ' . get_bloginfo( 'name', 'display' ) . '' ); ?>