Answers for "find post by id wp"

PHP
6

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
0

wp_query post id

$args = array(
	'post_type' => 'my_custom_type'
	'cat' => $cat_id,
);

$wp_query = new WP_Query( $args );

$wp_query->post->ID
Posted by: Guest on December-18-2021

Browse Popular Code Answers by Language