I-M-JM
I-M-JM

Reputation: 15950

WordPress Notice "Undefined Index"

I am getting following notice in WordPress

Notice: Undefined index: _wpnonce in /var/www/vhosts/abc.biz/php/func.php on line 338

Any solution? Thanks for help

Upvotes: 0

Views: 5602

Answers (1)

I-M-JM
I-M-JM

Reputation: 15950

I found the solution, have to use isset() to check _wpnonce value, before comparing it.

if ( isset($_POST['_wpnonce']) && $_POST['_wpnonce'] = '123456789' ) {}

Thanks.

Upvotes: 5

Related Questions