1. [POST & CATEGORY] get_the_category() để xem bài viết thuộc category nào (lấy chi tiết category)
https://developer.wordpress.org/reference/functions/get_the_category/
get_the_category( int $post_id = false )
$post_id
(int) (Optional) The post ID. Defaults to current post ID.
Default value: false
C:\xampp\htdocs\wordpress\wp-content\themes\twentytwentyone\header.php
<?php
$categories = get_the_category();
echo '<pre>';
var_export($categories);
echo '</pre>';
?>


Previous1. [CATEGORY & TAXONOMY & POST] Nhận bài viết theo phân loại tùy chỉnh (ok)Next2. [POST & CATEGORY] wp_get_post_categories() (nó lấy id category)(ok)
Last updated
Was this helpful?