/home/altere25/berryglowbeauty.com/wp-admin
NameSizeModeActions
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
maint/-0755rm
network/-0755rm
user/-0755rm
about.php279540644editdlrm
admin-ajax.php46720644editdlrm
admin-footer.php28300644editdlrm
admin-functions.php4090644editdlrm
admin-header.php82140644editdlrm
admin-post.php16920644editdlrm
admin.php121390644editdlrm
async-upload.php38210644editdlrm
comment.php110090644editdlrm
credits.php53070644editdlrm
custom-background.php4190644editdlrm
custom-header.php4290644editdlrm
customize.php96360644editdlrm
edit-comments.php141980644editdlrm
edit-form-advanced.php288010644editdlrm
edit-form-blocks.php134970644editdlrm
edit-form-comment.php78050644editdlrm
edit-link-form.php62300644editdlrm
edit-tag-form.php95190644editdlrm
edit-tags.php214920644editdlrm
edit.php178860644editdlrm
erase-personal-data.php32430644editdlrm
export-personal-data.php32180644editdlrm
export.php109430644editdlrm
freedoms.php47060644editdlrm
import.php75290644editdlrm
index.php59010644editdlrm
install-helper.php59070644editdlrm
install.php168980644editdlrm
link-add.php7270644editdlrm
link-manager.php41910644editdlrm
link-parse-opml.php26040644editdlrm
link.php27460644editdlrm
load-scripts.php17090644editdlrm
load-styles.php23170644editdlrm
media-new.php32140644editdlrm
media-upload.php33750644editdlrm
media.php56090644editdlrm
menu-header.php97430644editdlrm
menu.php144860644editdlrm
moderation.php3220644editdlrm
ms-admin.php2110644editdlrm
ms-delete-site.php41990644editdlrm
ms-edit.php2310644editdlrm
ms-options.php2380644editdlrm
ms-sites.php2300644editdlrm
ms-themes.php2320644editdlrm
ms-upgrade-network.php2340644editdlrm
ms-users.php2300644editdlrm
my-sites.php46570644editdlrm
nav-menus.php438410644editdlrm
network.php54070644editdlrm
options-discussion.php153120644editdlrm
options-general.php149510644editdlrm
options-head.php4920644editdlrm
options-media.php62470644editdlrm
options-permalink.php189530644editdlrm
options-privacy.php80870644editdlrm
options-reading.php97110644editdlrm
options-writing.php86340644editdlrm
options.php121920644editdlrm
plugin-editor.php133660644editdlrm
plugin-install.php63980644editdlrm
plugins.php243710644editdlrm
post-new.php27120644editdlrm
post.php96640644editdlrm
press-this.php24040644editdlrm
privacy-policy-guide.php8520644editdlrm
privacy.php25650644editdlrm
profile.php2980644editdlrm
revision.php52130644editdlrm
setup-config.php159080644editdlrm
site-health-info.php57880644editdlrm
site-health.php53520644editdlrm
term.php22640644editdlrm
theme-editor.php150880644editdlrm
theme-install.php152130644editdlrm
themes.php237020644editdlrm
tools.php34700644editdlrm
update-core.php337260644editdlrm
update.php109550644editdlrm
upgrade-functions.php3440644editdlrm
upgrade.php55600644editdlrm
upload.php139210644editdlrm
user-edit.php292540644editdlrm
user-new.php222850644editdlrm
users.php198900644editdlrm
widgets.php197400644editdlrm
Edit: /home/altere25/berryglowbeauty.com/wp-admin/my-sites.php (4657B)
ID ); $updated = false; if ( 'updateblogsettings' == $action && isset( $_POST['primary_blog'] ) ) { check_admin_referer( 'update-my-sites' ); $blog = get_site( (int) $_POST['primary_blog'] ); if ( $blog && isset( $blog->domain ) ) { update_user_option( $current_user->ID, 'primary_blog', (int) $_POST['primary_blog'], true ); $updated = true; } else { wp_die( __( 'The primary site you chose does not exist.' ) ); } } $title = __( 'My Sites' ); $parent_file = 'index.php'; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

' . __( 'This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.' ) . '

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

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

' . '

' . __( 'Documentation on My Sites' ) . '

' . '

' . __( 'Support' ) . '

' ); require_once( ABSPATH . 'wp-admin/admin-header.php' ); if ( $updated ) { ?>

%s', esc_url( $sign_up_url ), esc_html_x( 'Add New', 'site' ) ); } if ( empty( $blogs ) ) : echo '

'; _e( 'You must be a member of at least one site to use this page.' ); echo '

'; else : ?>

    ' . __( 'Global Settings' ) . ''; echo $settings_html; } reset( $blogs ); foreach ( $blogs as $user_blog ) { switch_to_blog( $user_blog->userblog_id ); echo '
  • '; echo "

    {$user_blog->blogname}

    "; $actions = "" . __( 'Visit' ) . ''; if ( current_user_can( 'read' ) ) { $actions .= " | " . __( 'Dashboard' ) . ''; } /** * Filters the row links displayed for each site on the My Sites screen. * * @since MU (3.0.0) * * @param string $actions The HTML site link markup. * @param object $user_blog An object containing the site data. */ $actions = apply_filters( 'myblogs_blog_actions', $actions, $user_blog ); echo "

    " . $actions . '

    '; /** This filter is documented in wp-admin/my-sites.php */ echo apply_filters( 'myblogs_options', '', $user_blog ); echo '
  • '; restore_current_blog(); } ?>
1 || has_action( 'myblogs_allblogs_options' ) || has_filter( 'myblogs_options' ) ) { ?>