Answers for "wordpress query get post by id"

PHP
3

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

wp_query post by category id

$args=array(
    'posts_per_page' => 50, 
    'post_type' => 'my_custom_type'
    'cat' => $cat_id,
);
$wp_query = new WP_Query( $args );
Posted by: Guest on June-20-2021

Code answers related to "wordpress query get post by id"

Browse Popular Code Answers by Language