Thanks for your help TeddyKiller!
Unfortunately that does not help either!
I believe the $current_user global is set in the Wordpress pluggable.php file. Here is the code: (again I believe....somewhat new to this)
function wp_set_current_user($id, $name = '') {
global $current_user;
if ( isset($current_user) && ($id == $current_user->ID) )
return $current_user;
$current_user = new WP_User($id, $name);
setup_userdata($current_user->ID);
do_action('set_current_user');
return $current_user;
}
endif;
if ( !function_exists('wp_get_current_user') ) :
Again, the code I used in first post works in IE great!! It is just Safari and FireFox that it doesn't?? The same is true if I try to call the Wordpress Login Cookies. Works in IE but not Safari or Firefox.
It just doesn't seem to find it like I have not connected to Wordpress somehow!
Any help is appreciated!
Thanks!