안녕하세요?
현재 사용하는 테마에서 post글을 보여주고 있습니다.
여기에 kboard 를 추가해서 함께 보여지게 하고싶은데
어떤곳에 어떤 필드를 입력하면 되는지 잘 모르겠네요
switch ($settings['posts_type']) {
default:
$neuron_posts_type = 'post';
$neuron_posts_name = 'blog';
$neuron_posts_taxonomy = 'category';
$neuron_posts_normal_query = $settings['posts_query_normal_post'];
$neuron_posts_metro_query = $settings['posts_query_metro_post'];
$neuron_posts_wrapper_class = 'l-blog-wrapper';
$neuron_posts_holder_class = 'l-blog-wrapper__posts-holder l-blog-wrapper__posts-holder--'. $settings['posts_layout_model'] .'';
$neuron_posts_item_class = 'o-blog-post';
break;
case 'kboard':
$neuron_posts_type = 'kboard';
$neuron_posts_name = 'kboard';
$neuron_posts_taxonomy = 'category';
$neuron_posts_normal_query = $settings['posts_query_normal_post'];
$neuron_posts_metro_query = $settings['posts_query_metro_post'];
$neuron_posts_wrapper_class = 'l-blog-wrapper';
$neuron_posts_holder_class = 'l-blog-wrapper__posts-holder l-blog-wrapper__posts-holder--'. $settings['posts_layout_model'] .'';
$neuron_posts_item_class = 'o-blog-post';
break;
case 'portfolio':
$neuron_posts_type = 'portfolio';
$neuron_posts_name = 'portfolio';
$neuron_posts_taxonomy = 'portfolio_category';
$neuron_posts_normal_query = $settings['posts_query_normal_portfolio'];
$neuron_posts_metro_query = $settings['posts_query_metro_portfolio'];
$neuron_posts_wrapper_class = 'l-portfolio-wrapper';
$neuron_posts_holder_class = 'l-portfolio-wrapper__items-holder l-portfolio-wrapper__items-holder--'. $settings['posts_layout_model'] . '';
$neuron_posts_item_class = 'o-portfolio-item';
break;
case 'product':
$neuron_posts_type = 'product';
$neuron_posts_name = 'shop';
$neuron_posts_taxonomy = 'product_cat';
$neuron_posts_normal_query = $settings['posts_query_normal_product'];
$neuron_posts_metro_query = $settings['posts_query_metro_product'];
$neuron_posts_wrapper_class = 'l-woocommerce-wrapper';
$neuron_posts_holder_class = 'l-woocommerce-wrapper__products-holder l-woocommerce-wrapper__products-holder--'. $settings['posts_layout_model'] .'';
$neuron_posts_item_class = 'product-holder';
break;
}
보시면 default 밑에 case1에 Kboard를 삽입하려고 합니다.
포스트 네임과 포스트타입은 알맞게 입력한거같은데
그 밑에 부터가 문제네요 케이보드는 category1로 시작하는거같은데 그렇게 기입하는게 맞는건지
혹시 저기 기입할수있는 알맞은 코드를 소스상에서 볼수있는 방법은 없을까요?
/plugins/kboard/class
아마 이 폴더에 있을거라 생각되는데
찾지를 못하겠네요
도움주시면 감사하겠습니다.
안녕하세요~^^
KBoard 플러그인에서 워드프레스 통합검색 기능을 사용하기 위해
게시글 등록 시 워드프레스 Post(글)에도 데이터를 저장하고 있으며
게시글 정보를 포스트에 등록할 때 카테고리는 별도로 저장하고 있지 않습니다.
올려주신 코드는 테마 쪽의 코드인지요?
저희가 모든 테마의 코드를 알 수 없기 때문에 답변을 드리는 데 한계가 있습니다.
테마 제작자에게도 문의를 해보시는 게 좋을 듯합니다.
고맙습니다.