Answers for "post get id"

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

get term id by post id

INSIDE TAXONOMY PAGES
$term      = get_queried_object();
$term_id   = $term->term_id;
Posted by: Guest on January-02-2021

Browse Popular Code Answers by Language