Answers for "get category by slug wp"

PHP
1

wordpress get page slug

// Get the queried object and sanitize it
$current_page = sanitize_post( $GLOBALS['wp_the_query']->get_queried_object() );
// Get the page slug
$slug = $current_page->post_name;
Posted by: Guest on March-02-2021
1

get the category wp

//get category name foolproof 
echo (!empty(get_the_category($post)) ? get_the_category($post)[0]->name : '');
Posted by: Guest on September-09-2021

Browse Popular Code Answers by Language