Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Last active December 22, 2015 02:48
Show Gist options
  • Save DrewAPicture/6405527 to your computer and use it in GitHub Desktop.
Save DrewAPicture/6405527 to your computer and use it in GitHub Desktop.
<?php
class Unnamed_Theme {
public function __construct() {
add_filter( 'login_redirect', array( $this, 'login_redirect' ), 10, 3 );
}
public function login_redirect( $redirect_to, $request, $user ) {
return admin_url( 'media-new.php' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment