我有很多自定义帖子类型,我想在同一个函数中创建它们,所以当我创建自定义帖子类型时,有没有办法向函数发送参数。
我想到这样的事情:
function custom_poster($pluralName, $singularName) {
// Create custom post type
}
add_action( 'init', 'custom_poster' );
或:
function create($pluralName, $singularName)
{
function custom_poster() {
// Create custom post type and use $pluralName, $singularName)
}
add_action( 'init', 'custom_poster' );
}
create("myposts","mypost");