X7ROOT File Manager
Current Path:
/home/notabjze/caribbeansee.com/wp-admin
home
/
notabjze
/
caribbeansee.com
/
wp-admin
/
ðŸ“
..
📄
about.php
(24.38 KB)
📄
admin-ajax.php
(4.83 KB)
📄
admin-footer.php
(2.76 KB)
📄
admin-functions.php
(406 B)
📄
admin-header.php
(8.8 KB)
📄
admin-post.php
(2 KB)
📄
admin.php
(12.26 KB)
📄
async-upload.php
(4.56 KB)
📄
authorize-application.php
(10.02 KB)
📄
comment.php
(11.25 KB)
📄
credits.php
(3.69 KB)
ðŸ“
css
📄
custom-background.php
(416 B)
📄
custom-header.php
(426 B)
📄
customize.php
(10.6 KB)
📄
edit-comments.php
(13.97 KB)
📄
edit-form-advanced.php
(28.36 KB)
📄
edit-form-blocks.php
(10.83 KB)
📄
edit-form-comment.php
(8.34 KB)
📄
edit-link-form.php
(6.16 KB)
📄
edit-tag-form.php
(10.41 KB)
📄
edit-tags.php
(21.87 KB)
📄
edit.php
(19.01 KB)
📄
erase-personal-data.php
(7.36 KB)
📄
export-personal-data.php
(7.76 KB)
📄
export.php
(10.99 KB)
📄
freedoms.php
(4.42 KB)
ðŸ“
images
📄
import.php
(7.4 KB)
ðŸ“
includes
📄
index.php
(7.65 KB)
📄
install-helper.php
(6.8 KB)
📄
install.php
(16.82 KB)
ðŸ“
js
📄
link-add.php
(742 B)
📄
link-manager.php
(4.16 KB)
📄
link-parse-opml.php
(2.59 KB)
📄
link.php
(2.7 KB)
📄
load-scripts.php
(1.66 KB)
📄
load-styles.php
(2.47 KB)
ðŸ“
maint
📄
media-new.php
(3.18 KB)
📄
media-upload.php
(3.49 KB)
📄
media.php
(5.49 KB)
📄
menu-header.php
(9.82 KB)
📄
menu.php
(16.84 KB)
📄
moderation.php
(307 B)
📄
ms-admin.php
(196 B)
📄
ms-delete-site.php
(4.19 KB)
📄
ms-edit.php
(216 B)
📄
ms-options.php
(223 B)
📄
ms-sites.php
(215 B)
📄
ms-themes.php
(217 B)
📄
ms-upgrade-network.php
(219 B)
📄
ms-users.php
(215 B)
📄
my-sites.php
(4.65 KB)
📄
nav-menus.php
(46.67 KB)
ðŸ“
network
📄
network.php
(5.35 KB)
📄
options-discussion.php
(15.58 KB)
📄
options-general.php
(16.57 KB)
📄
options-head.php
(492 B)
📄
options-media.php
(6.35 KB)
📄
options-permalink.php
(21.09 KB)
📄
options-privacy.php
(9.93 KB)
📄
options-reading.php
(9.92 KB)
📄
options-writing.php
(8.58 KB)
📄
options.php
(12.67 KB)
📄
plugin-editor.php
(13.13 KB)
📄
plugin-install.php
(6.78 KB)
📄
plugins.php
(28.6 KB)
📄
post-new.php
(2.64 KB)
📄
post.php
(9.86 KB)
📄
press-this.php
(2.33 KB)
📄
privacy-policy-guide.php
(3.61 KB)
📄
privacy.php
(2.42 KB)
📄
profile.php
(283 B)
📄
revision.php
(5.45 KB)
📄
setup-config.php
(16.93 KB)
📄
site-editor.php
(4.6 KB)
📄
site-health-info.php
(3.93 KB)
📄
site-health.php
(10.01 KB)
📄
term.php
(2.2 KB)
📄
theme-editor.php
(14.91 KB)
📄
theme-install.php
(23.23 KB)
📄
themes.php
(45.64 KB)
📄
tools.php
(3.43 KB)
📄
update-core.php
(43.86 KB)
📄
update.php
(12.43 KB)
📄
upgrade-functions.php
(341 B)
📄
upgrade.php
(5.54 KB)
📄
upload.php
(14.56 KB)
ðŸ“
user
📄
user-edit.php
(38.73 KB)
📄
user-new.php
(23.69 KB)
📄
users.php
(21.36 KB)
📄
widgets-form-blocks.php
(2.48 KB)
📄
widgets-form.php
(19.05 KB)
📄
widgets.php
(1.09 KB)
Editing: credits.php
<?php /** * Credits administration panel. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; require_once __DIR__ . '/includes/credits.php'; // Used in the HTML title tag. $title = __( 'Credits' ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); require_once ABSPATH . 'wp-admin/admin-header.php'; $credits = wp_credits(); ?> <div class="wrap about__container"> <div class="about__header"> <div class="about__header-title"> <h1> <?php _e( 'Contributors' ); ?> </h1> </div> <div class="about__header-text"> <?php printf( /* translators: %s: Version number. */ __( 'WordPress %s was created by a worldwide team of passionate individuals' ), $display_version ); ?> </div> </div> <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> </nav> <div class="about__section has-1-column has-gutters"> <div class="column aligncenter"> <?php if ( ! $credits ) : ?> <p> <?php printf( /* translators: 1: https://wordpress.org/about/ */ __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals.' ), __( 'https://wordpress.org/about/' ) ); ?> <br /> <a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a> </p> <?php else : ?> <p> <?php _e( 'Want to see your name in lights on this page?' ); ?> <br /> <a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a> </p> <?php endif; ?> </div> </div> <?php if ( ! $credits ) { echo '</div>'; require_once ABSPATH . 'wp-admin/admin-footer.php'; exit; } ?> <hr class="is-large" /> <div class="about__section"> <div class="column is-edge-to-edge"> <?php wp_credits_section_title( $credits['groups']['core-developers'] ); ?> <?php wp_credits_section_list( $credits, 'core-developers' ); ?> <?php wp_credits_section_list( $credits, 'contributing-developers' ); ?> </div> </div> <hr /> <div class="about__section"> <div class="column"> <?php wp_credits_section_title( $credits['groups']['props'] ); ?> <?php wp_credits_section_list( $credits, 'props' ); ?> </div> </div> <hr /> <?php if ( isset( $credits['groups']['translators'] ) || isset( $credits['groups']['validators'] ) ) : ?> <div class="about__section"> <div class="column"> <?php wp_credits_section_title( $credits['groups']['validators'] ); ?> <?php wp_credits_section_list( $credits, 'validators' ); ?> <?php wp_credits_section_list( $credits, 'translators' ); ?> </div> </div> <hr /> <?php endif; ?> <div class="about__section"> <div class="column"> <?php wp_credits_section_title( $credits['groups']['libraries'] ); ?> <?php wp_credits_section_list( $credits, 'libraries' ); ?> </div> </div> </div> <?php require_once ABSPATH . 'wp-admin/admin-footer.php'; return; // These are strings returned by the API that we want to be translatable. __( 'Project Leaders' ); /* translators: %s: The current WordPress version number. */ __( 'Core Contributors to WordPress %s' ); __( 'Noteworthy Contributors' ); __( 'Cofounder, Project Lead' ); __( 'Lead Developer' ); __( 'Release Lead' ); __( 'Release Design Lead' ); __( 'Release Deputy' ); __( 'Core Developer' ); __( 'External Libraries' );
Upload File
Create Folder