noname02
카테고리 가져오기 본문
$categories
= get_categories(
array
(
'orderby'
=>
'name'
,
'parent'
=> 0
) );
foreach
(
$categories
as
$category
) {
printf(
'<a href="%1$s">%2$s</a><br />'
,
esc_url( get_category_link(
$category
->term_id ) ),
esc_html(
$category
->name )
);
}
'WordPress' 카테고리의 다른 글
테마폴더 root 가져오기 (0) | 2016.03.03 |
---|---|
functions.php (0) | 2016.03.02 |
Comments