我试图展示这些分类法中的所有术语。然而,我无法让它们工作。请帮忙,谢谢
<?php
$terms = get_terms(
\'taxonomy\' => array(
\'category\',
\'profile_status\',
\'profile_skill\')
);
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
echo \'<ul>\';
foreach ( $terms as $term ) {
echo \'<li>\' . $term->name . \'</li>\';
}
echo \'</ul>\';
}
?>