2013-07-19 1 views
1

이 질문에 대한 답변을 찾을 수 없습니다. 쉽지 않을 수도 있습니다. 현재 게시물의 인라인 카테고리를 단축 코드로 표시하고 쉼표로 구분하고 싶습니다. 아래에서 이렇게 해 보았습니다.wordpress에서 단축 코드로 카테고리를 나열하는 방법?

function genre($atts, $content = null) { 
$categories = the_category(', '); 
    return '<div id="genre"><b>Genre: </b>' . $categories . '</div>'; 
} 

add_shortcode("genre", "genre"); 

이 이렇게하면 함수를 직접 생성 할 필요가 플러그인을 사용하지 않고

답변

1

Genre: Array을 반환 Genre:

function genre($atts, $content = null) { 
$categories = get_the_category(', '); 
    return '<div id="genre"><b>Genre: </b>' . $categories . '</div>'; 
} 

add_shortcode("genre", "genre"); 

반환합니다. 또는 당신은 당신의 템플릿에 다음을 추가 할 수 있습니다

<?php wp_list_categories($args); ?> 

문서는 여기에서 찾을 수 있습니다 : http://codex.wordpress.org/Template_Tags/wp_list_categories