开发者 | Benoti |
---|---|
更新时间 | 2021年10月29日 16:17 |
捐献地址: | 去捐款 |
PHP版本: | 4.5 及以上 |
WordPress版本: | 4.9 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
There is a special filter to add any post type to the tools Just add this in your functions.php add_filter("bfd_layout_tools_post_types", "your_function"); function your_function($post_types){ $my_new_post_types = array("project", "event"); $post_types = array_merge($post_types, $my_new_post_types); return $post_types; }