0

每当添加/创建新类别时,我都需要创建 wordpress 页面。我需要以编程方式进行,wordpress 中是否有任何钩子/过滤器来实现这种功能,例如用于帖子的 save_post 过滤器。

谢谢你。

4

1 回答 1

0

是的,你有动作钩子created_$taxonomy。对于分类类别:

add_action( 'created_category', function( $term_id, $tt_id )
{
    // The new category ID is $term_id
    // Use it to do your thing
}, 10, 2 );
于 2013-09-09T16:06:14.173 回答