LoginSignup
1
0

More than 5 years have passed since last update.

管理画面をカスタマイズしようとして$current_screen使ったら、 : Trying to get property of non-object inって言われた件

Posted at
//function.php
if($current_screen->post_type == 'xxx') {

}

前使ったときは大丈夫だったじゃん・・・
なんなん・・・と思って調べたら、こういう感じに書けばいいらしい。

//function.php
if(isset($current_screen) && $current_screen->post_type == 'xxx') {

}

参考:https://wordpress.org/support/topic/fix-for-undefined-current_screen/

1
0
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
1
0