All in One SEO 4.x 버전 이후

안녕하세요? 오랜만에 문의 드립니다. 

게시판 SEO 와 관련하여 자체적으로 KBseo.class.php 에서 All in one SEO 설정을 제외하고 Kboard 자체 SEO 가 적용된 내용은 잘 알고 있습니다. 

얼마전에 All in one SEO 4.x 버전으로 업그레이드 이후 이 부분이 제대로 작동을 하지 않는 것 같습니다. 

업그레이드 이전에는 All in one SEO 자체적으로도 원하는 타입의 포스트만 선택할 수 있는 옵션도 있었는데, 지금은 그 내용도 없어진것 같습니다. 개인적으로 해결 해보려고 한동안 많은 시도를 했는데 잘 되지 않아 문의를 드립니다. 

All in one SEO 측에도 문의를 해서 답변을 받았는데, 

To disable All in One SEO on a pots type, use the filter code here - https://aioseo.com/docs/aioseo_disable/

Here's an example of how you'd use the filter to disable AIOSEO on two post types - Posts and Songs:

add_filter( 'aioseo_disable', 'aioseo_disable_term_output' );

function aioseo_disable_term_output( $disabled) {
if ( is_singular( array( 'songs', 'post' ) ) ) {
return true;
}
return false;
}

이렇게 적용해보라고 답변이와서 

add_filter( 'aioseo_disable', 'aioseo_disable_term_output' );

function aioseo_disable_term_output( $disabled) {
if ( is_singular( array( 'kboard' ) ) ) {
return true;
}
return false;
}

차일드 테마의 functions.php 에 상기 코드를 넣고 테스트 해봤으나 작동이 되질 않습니다. 

혹시 방법이 있을까요? 

감사합니다. 

워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요