Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to display user id from a function on a wordpress page

function get_current_user_id() {
    if ( ! function_exists( 'wp_get_current_user' ) ) {
        return 0;
    }
    $user = wp_get_current_user();
    return ( isset( $user->ID ) ? (int) $user->ID : 0 );
}
Source by developer.wordpress.org #
 
PREVIOUS NEXT
Tagged: #display #user #id #function #wordpress #page
ADD COMMENT
Topic
Name
3+7 =