📅  最后修改于: 2022-03-11 14:54:50.843000             🧑  作者: Mango
function avf_alb_supported_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = 'YOUR CUSTOM POST NAME';
$supported_post_types[] = 'YOUR CUSTOM POST NAME';
return $supported_post_types;
}
add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);