I am customizing the WP admin area and want the functions I am using to only affect a specific user. Any Ideas on how to write this?
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
http://codex.wordpress.org/Function_Reference/get_currentuserinfo That is a very general solution. There may be other/better solutions but you didn't provide much information about what you are trying to accomplish. |
|||
|
|
Then check if the returned value for $current_user->ID is the ID of the user you want and then display the content for that user only? |
|||
|
|