2013-06-24 6 views
0

내가 원하는 사용자 정의 HTML와 모든 하위 범주를 출력하기, 다음 코드는 작동합니다카테고리 (11)의 모든 하위 범주 출력

이 내가 원하는 것이 아니다 워드 프레스의 HTML을 출력하지만
<?php wp_list_categories('child_of=11&hide_empty=1'); ?> 

, 나는 싶습니다 어떤 워드 프레스 출력을 변경할 수 있는지 알고 있습니까?

현재 HTML은 다음과 같습니다

<li class="cat-item cat-item-13"><a href="/category/portfolio/consumer">Consumer</a></li> 
<li class="cat-item cat-item-12"><a href="/category/portfolio/enterprise">Enterprise</a></li> 
자바 스크립트를 삽입하지 않고 나는 기본적으로 다음을 수행 할

:

<li><a href="#" data-filter=".consumer">Consumer</a></li> 
<li><a href="#" data-filter=".enterprise">Enterprise</a></li> 

이것이 가능을?

답변

1

이이

$args = array(
    'child_of' => 11, 
    'hide_empty' => 1 
); 
$categories = get_categories($args); 

foreach ($categories as $category) { 
    echo "<li ><a href='#' data-filter='.".strtolower($category->name)."'>".$category->name."</a></li>"; 
} 

당신은 그 data-filter 목적

+0

감사 Mithun에 대한 $category->slug를 사용할 수 있습니다 시도, 완벽하게 작동합니다! 4 분이 끝나면이 대답을 받아 들일 것입니다. 많은 감사합니다! – Nick