WordPressで寄稿者が「レビュー待ち依頼」をした時にスラッグが消えてしまう現象があります。
WordPressが意図的の行っている仕様で、現時点ではコードを直接書き換える以外方法はなさそうです。

無理やり変えるのがなんとも気持ち悪いですが...
・ /wp-include/post.php
以下をコメントアウトしましょう。
post.phpコピー// Don't allow contributors to set the post slug for pending review posts. if ( 'pending' == $post_status && !current_user_can( 'publish_posts' ) ) { $post_name = ''; }
↓
post.phpコピー// Don't allow contributors to set the post slug for pending review posts. // if ( 'pending' == $post_status && !current_user_can( 'publish_posts' ) ) { // $post_name = ''; // }