自訂文章摘要長度 custom post type excerpt length

/*custom post type excerpt length*/
add_filter('excerpt_length', function ($length) {
global $post;
if ($post->post_type == 'case_stories'){
return 200;
}
return 50;
}, 100);

發佈留言