使用参数创建自定义帖子类型

时间:2014-09-24 08:57:46

标签: wordpress custom-post-type

我有很多自定义帖子类型,我想在同一个函数中创建它们,所以当我创建自定义帖子类型时,有没有办法向函数发送参数。

我想到这样的事情:

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");

0 个答案:

没有答案