Answers for "user post id wordpress"

PHP
5

wordpress get post id

// Retrieve the ID of the current item in the WordPress Loop.
get_the_ID()
Posted by: Guest on February-19-2021
1

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 );
}
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language