后台添加book分类,在functions.php添加如下代码

  1. add_action( 'init', 'create_post_type' );
  2. function create_post_type() {
  3. register_post_type( 'book',
  4. array(
  5. 'labels' => array(
  6. 'name' => __( 'book' ),
  7. 'singular_name' => __( 'book' )
  8. ),
  9. 'public' => true,
  10. 'has_archive' => true,
  11. )
  12. );
  13. }
作者 铁血 汉子 2018年1月6日
2025/04/10/01:17:41pm 2018/1/6/2:51:03
0 2132