Add “custom page” without page

后端 未结 3 1434
逝去的感伤
逝去的感伤 2020-12-12 05:43

The title might not be completely clear, but I didn\'t know how to ask this in another way.

I want to build a system in Wordpress where the user can put some projec

3条回答
  •  执笔经年
    2020-12-12 06:41

    In your functions.php file add this anywhere:

    function themeslug_projects() {
        $args = array(
          'public' => true,
          'label'  => 'Projects', 
    
          'rewrite' => array( 'slug' => 'projects' ),
        );
        register_post_type( 'projects', $args );
    }
    
    add_action( 'init', 'themeslug_projects' );
    

    Do save your permalink settings again after doing this, this will work surely then..

提交回复
热议问题