以下是解决方案:
您需要挂起一个操作来删除ssba按钮。Wp action 运行得很早,允许您删除添加按钮列表的内容上的ssba筛选器。
function remove_share_buttons_custom_post() {
if (in_array(get_post_type(),array(\'sar\'))) {
remove_filter( \'the_content\', \'show_share_buttons\');
}
}
add_action(\'wp\', \'remove_share_buttons_custom_post\');