Skip to content

Instantly share code, notes, and snippets.

@aristath
Last active December 19, 2015 13:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save aristath/5964238 to your computer and use it in GitHub Desktop.
Save aristath/5964238 to your computer and use it in GitHub Desktop.
<?php
global $current_user;
get_currentuserinfo();
$url = home_url() . '/members/' . $current_user->user_login . '/classifieds/my-classifieds';
wp_redirect( $url );
exit;
<?php
global $current_user;
get_currentuserinfo();
$url = home_url() . '/members/' . $current_user->user_login . '/classifieds/create-new';
wp_redirect( $url );
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment