Powered by Blogger.

Call to undefined function wp_get_current_user() in wordpress


Call to undefined function wp_get_current_user() in wordpress

User this to solve the problem:
<?php
if(!function_exists('wp_get_current_user')) {
    include(ABSPATH . "wp-includes/pluggable.php"); 
}
?>

No comments