PHP Wordpress dizi görüntüleme.

0 Cevap php

If you know nothing about Wordpress but know how to display everything stored in an php array (at least in my case) - please answer. I'll appreciate!

Ben kategoriler listesini tutan bir PHP dizi var. Ama içeriğini görüntülemek için nasıl hiçbir fikrim yok.

Bu kod:

$category = get_the_category(); 
echo $category;

Çıkışlar:

Dizi

Ne yapmak istiyorum dizideki ilk öğeyi görüntülemek için.

Ben de denedim:

  1. echo $ kategori [0] -> cat_name

  2. echo $ kategori [1] -> cat_name

Where the cat_name was "cat_name", "Folio" (my custom post type name), "type", "types" and "my_folio_cat". Everything outputs nothing (even not "Dizi" text).

Ben böyle taksonomisini kayıt ediyorum:

register_taxonomy("my_folio_cat", array("folio"), array("hierarchical" => true, "label" => "Type", "singular_label" => "Type", "rewrite" => true));

0 Cevap