wordpress theme:如何在archive中取得term資料-get_queried_object()
最近在迭代自己的wordpress theme。
在archive中取得category和post-tag這兩個wordpress既有的分類法的term資料是很常見的,都有現成的參數和函數。
如何在archive中取得自訂taxonomy的term資料?
get_queried_object()
就是這個函數,不僅能取得自訂taxonomy的term數據,也能取得category和post-tag的數據。甚至,如果是自訂post type的archive,也可以取得目前的post type資料。
$term_data = get_queried_object();//在archive.php中,直接使用。
wordpress官網上的網址:https://developer.wordpress.org/reference/functions/get_queried_object/
也可以獲得目前的post和user的資料。不過,這兩個我沒試過。