Answers for "wordpress get id by post_name"

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
0

get post by name wordpress

$posts = get_posts(array('name' => 'your-posts-name', 'post_type' => 'faq'));
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language