Gianismでログイン後に表示されるページをログイン前にみていたページにする

以下をfunctions.phpに追加します。

/**
 * Customize redirect URL
 * @param string $url     if not specified, null will be passed.
 * @param string $service facebook, twitter, etc.
 * @param string $context login, connect, etc.
 * @return string URL string to redirect to. Null is no-redirect.
 */
function _my_redirect_to($url, $service, $context){
  $location = wp_get_referer() ;
  return $location;
}
// Add filter.
add_filter('gianism_redirect_to', '_my_redirect_to', 10, 3);

参考:wordpressで会員サイトをつくる(2)SNSログイン(Gianism)のリダイレクトをrefereにする