Often it is necessary delivery error messages to the user. Always is something like:
if ( ! $user1[1] || ! $user2[1])
{
echo "User's data missing.";
return;
}
But this can cause problems when is output before headers. Is there WP function to do this cleaner?
Thanks.-