pobranie nazwy kategorii przez custom fields – taxonomy

w polu custom fields taxonomy odznaczamy single term object:


<?php $term = get_field('taxonomy_field_name');
if( $term ): ?>

	<h2><?php echo $term->name; ?></h2>
	<p><?php echo $term->description; ?></p>

<?php endif; ?>

Wordpress

Hope this helps and happy coding :)

Zobacz jeszcze

lista kategorii custom post

pobranie listy category name & link custom post <?php $args = array( 'taxonomy' => 'my-category', 'orderby' => 'name', 'order' => 'ASC', 'show_count'...

pobranie wybranych wpisów na dowolną stronę - custom field Wpis - Post Object

dodajemy w panelu custom field Wpis - Post Object i w kodzie strony wstawiamy: <!-- start get data of post --> <?php $post_object = get_sub_field('your_field_name'); if(...