Answers for "get_post id"

PHP
0

get_the_id wordpress

function get_the_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
    $post = get_post();
    return ! empty( $post ) ? $post->ID : false;
}
Posted by: Guest on October-26-2020
0

get post title by post id wordpress

get_post( $post_id )->post_title
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language