LoginSignup
6
3

More than 5 years have passed since last update.

WordPressの固定ページ階層化

Posted at

WordPressは固定ページの階層化設定をするのに、公開しているページしかドロップダウンで選択できないので、非公開の固定ページでも階層化の選択ができるようにするための記述。

/* 固定ページを非公開の状態でも階層化選択できるようにする */
function allow_private_draft($args) {
    $args['post_status'] = 'publish,private,draft';
    return $args;
}
add_filter( 'page_attributes_dropdown_pages_args', 'allow_private_draft' );

functions.phpに追記すればOK。
先に下の階層のページを作る時に仮当てで上層ページを作る必要があったのでやってみた。

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3