/home/altere25/quintelacrosse.com/wp-admin
NameSizeModeActions
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
maint/-0755rm
network/-0755rm
user/-0755rm
about.php197230644editdlrm
admin-ajax.php51460644editdlrm
admin-footer.php28340644editdlrm
admin-functions.php4060644editdlrm
admin-header.php90750644editdlrm
admin-post.php20700644editdlrm
admin.php125650644editdlrm
async-upload.php48560644editdlrm
authorize-application.php103350644editdlrm
comment.php116220644editdlrm
contribute.php57270644editdlrm
credits.php38410644editdlrm
custom-background.php4160644editdlrm
custom-header.php4260644editdlrm
customize.php111260644editdlrm
edit-comments.php147260644editdlrm
edit-form-advanced.php295500644editdlrm
edit-form-blocks.php132690644editdlrm
edit-form-comment.php85440644editdlrm
edit-link-form.php63620644editdlrm
edit-tag-form.php106950644editdlrm
edit-tags.php225330644editdlrm
edit.php199520644editdlrm
erase-personal-data.php75050644editdlrm
error_log116200644editdlrm
export-personal-data.php79410644editdlrm
export.php112880644editdlrm
freedoms.php46040644editdlrm
import.php76570644editdlrm
index.php78640644editdlrm
install-helper.php69610644editdlrm
install.php175090644editdlrm
link-add.php9380644editdlrm
link-manager.php43650644editdlrm
link-parse-opml.php26970644editdlrm
link.php29570644editdlrm
load-scripts.php20700644editdlrm
load-styles.php29950644editdlrm
media-new.php32610644editdlrm
media-upload.php35690644editdlrm
media.php8190644editdlrm
menu-header.php100690644editdlrm
menu.php170730644editdlrm
moderation.php3070644editdlrm
ms-admin.php1960644editdlrm
ms-delete-site.php42940644editdlrm
ms-edit.php2160644editdlrm
ms-options.php2290644editdlrm
ms-sites.php2150644editdlrm
ms-themes.php2170644editdlrm
ms-upgrade-network.php2190644editdlrm
ms-users.php2150644editdlrm
my-sites.php48580644editdlrm
nav-menus.php492750644editdlrm
network.php55220644editdlrm
options-discussion.php157660644editdlrm
options-general.php220300644editdlrm
options-head.php5480644editdlrm
options-media.php65050644editdlrm
options-permalink.php217180644editdlrm
options-privacy.php101900644editdlrm
options-reading.php102660644editdlrm
options-writing.php93170644editdlrm
options.php137680644editdlrm
plugin-editor.php137370644editdlrm
plugin-install.php71240644editdlrm
plugins.php307320644editdlrm
post-new.php27680644editdlrm
post.php102090644editdlrm
press-this.php23960644editdlrm
privacy-policy-guide.php37560644editdlrm
privacy.php25420644editdlrm
profile.php2830644editdlrm
revision.php58510644editdlrm
setup-config.php179030644editdlrm
site-editor.php72170644editdlrm
site-health-info.php40840644editdlrm
site-health.php104430644editdlrm
term.php22490644editdlrm
theme-editor.php157920644editdlrm
theme-install.php239300644editdlrm
themes.php480780644editdlrm
tools.php35140644editdlrm
update-core.php465190644editdlrm
update.php130920644editdlrm
upgrade-functions.php3410644editdlrm
upgrade.php57070644editdlrm
upload.php152070644editdlrm
user-edit.php405510644editdlrm
user-new.php245460644editdlrm
users.php238530644editdlrm
widgets-form-blocks.php50860644editdlrm
widgets-form.php196250644editdlrm
widgets.php11120644editdlrm
Edit: /home/altere25/quintelacrosse.com/wp-admin/link-manager.php (4365B)
current_action(); if ( $doaction && isset( $_REQUEST['linkcheck'] ) ) { check_admin_referer( 'bulk-bookmarks' ); $redirect_to = admin_url( 'link-manager.php' ); $bulklinks = (array) $_REQUEST['linkcheck']; if ( 'delete' === $doaction ) { foreach ( $bulklinks as $link_id ) { $link_id = (int) $link_id; wp_delete_link( $link_id ); } $redirect_to = add_query_arg( 'deleted', count( $bulklinks ), $redirect_to ); } else { $screen = get_current_screen()->id; /** This action is documented in wp-admin/edit.php */ $redirect_to = apply_filters( "handle_bulk_actions-{$screen}", $redirect_to, $doaction, $bulklinks ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } wp_redirect( $redirect_to ); exit; } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); exit; } $wp_list_table->prepare_items(); // Used in the HTML title tag. $title = __( 'Links' ); $this_file = 'link-manager.php'; $parent_file = $this_file; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

' . sprintf( /* translators: %s: URL to Widgets screen. */ __( 'You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.' ), 'widgets.php' ) . '

' . '

' . __( 'Links may be separated into Link Categories; these are different than the categories used on your posts.' ) . '

' . '

' . __( 'You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.' ) . '

', ) ); get_current_screen()->add_help_tab( array( 'id' => 'deleting-links', 'title' => __( 'Deleting Links' ), 'content' => '

' . __( 'If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.' ) . '

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

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

' . '

' . __( 'Documentation on Managing Links' ) . '

' . '

' . __( 'Support forums' ) . '

' ); get_current_screen()->set_screen_reader_content( array( 'heading_list' => __( 'Links list' ), ) ); require_once ABSPATH . 'wp-admin/admin-header.php'; if ( ! current_user_can( 'manage_links' ) ) { wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) ); } ?>

'; printf( /* translators: %s: Search query. */ __( 'Search results for: %s' ), '' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '' ); echo ''; } ?>
'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'deleted' ), $_SERVER['REQUEST_URI'] ); } ?>
search_box( __( 'Search Links' ), 'link' ); ?> display(); ?>