If I call get_user_meta() to retrieve a value, does WordPress cache the value? If I call get_user_meta() to retrieve the same value, does WordPress have to query the database again or is it stored in PHP memory?
Leave a Reply
You must be logged in to post a comment.
Yes, it does. That function is a wrapper for
get_metadata()
. Inside of that you can find: