Я работаю над категорией. Я должен показать весь список категорий на странице. Итак, я попробовал приведенный ниже код, и он работает. Я получаю свой список всех категорий.
Ниже приведен результат моего списка категорий
My question is, Where I go and add the category list code?
I have to access the URL like http://test.com/category/
so it will display my category list.
I created the category.php
page but that page is displaying the post with the related category.
For example http://test.com/category/destination
so it will display all the post which is related to the destination.
<?php
/**
* A Simple Category Template
*/
get_header();
?>
term_id))? (интервал) $ term-> term_id: 0; $ Categories = get_categories (array ('taxonomy' => 'category', 'orderby' => 'name', 'parent' => 0, 'hide_empty' => 0, // измените на 1, чтобы скрыть категории, не имеющие одиночный пост)); ?> term_id; $ category_name = $ category-> name; // При просмотре определенной категории присвойте ей [активный] класс $ cat_class = ($ cat_ID == $ term_id)? «активный»: «неактивный»; // Мне не нравится показывать категорию [uncategoirzed] if (strtolower ($ category_name)! = 'Uncategorized') {printf ('term_id ) ) . '">'. $ Category-> name. ' '); }}?>
Не могли бы вы мне помочь с этой проблемой?