1

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

誰でも私を助けることができますか?!

4

1 に答える 1

2

'rewrite' => falseに変更'rewrite' => true

または、より明示的にすることもできます:

'rewrite' => array ('slug' => 'services'),
于 2012-10-25T15:32:57.190 に答える