get_terms, get_term (ok)

get_terms

Ví dụ 1:

<?php
// mảng taxonomies
$taxonomies = array(
  'post_tag'
);
$args = array(
  'orderby'                => 'name'
);
$terms = get_terms($taxonomies, $args);
echo '<pre>';
	var_export($terms);
echo '</pre>';
?>

Kết quả:

Ví dụ 2:

C:\xampp\htdocs\wordpress\wp-content\themes\twentytwentyone\functions.php

C:\xampp\htdocs\wordpress\wp-content\themes\twentytwentyone\single.php

Kết quả:

get_term

Vi du

Hoặc đơn giản hơn

Last updated

Was this helpful?