Yet Another Related Posts Plugin - yagisawatakuya/Wiki GitHub Wiki
表示する記事をカスタム投稿のみにする
add_filter('wpcf_type', 'yarpp_support_func', 10, 2);
function yarpp_support_func($data, $post_type) {
if(in_array($post_type, array(
'カスタム投稿',
))){
$data['yarpp_support'] = true;
}
return $data;
}
カスタム投稿の関連記事を表示させる
add_action('init', 'register_posttype_article');
function register_posttype_article() {
register_post_type(
'カスタム投稿',
array(
'yarpp_support' => true
)
);
}
##YARPPの関連スコア設定が選択できない場合の対処方法 https://love-guava.com/wordpress-yarpp/