wordpress サイトに投稿用の新しいセクションを作成しましたが、URL がすべてめちゃくちゃになっているため、URL を書き直すのに問題があります。
register_post_type('services', array(
'label' => __('Services'),
'singular_label' => __('Services'),
'public' => true,
'show_ui' => true,
'capability_type' => 'post',
'hierarchical' => false,
'rewrite' => false,
'query_var' => false,
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt', 'custom-fields' )
));
現在、私のURLは現在このようになっています...
http://examplesite.com/?post_type=services&p=52
そして、私はそれがこのように見えるようにしたい
http://examplesite.com/services/postname
誰でも私を助けることができますか?!