• Label info in version 0.1.5 is wrong. Seems like lines 21-22 of “cms-press/cp-custom-content/cp-custom-content-handler-base.php” are in the wrong order:

    'name' => $this->get_type_label(),
    'singular_name' => $this->get_type_label_plural(),

    Should be:

    'name' => $this->get_type_label_plural(),
    'singular_name' => $this->get_type_label(),

    http://wordpress.org/extend/plugins/cms-press/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: CMS Press] Post type label’ is closed to new replies.