Fatal error: Call to undefined function p_nonce_field()
-
Error loading plugin from Dashboard –> Tools –> Old Core Files
Fatal error: Call to undefined function p_nonce_field() in /home/website/public_html/wp-content/plugins/old-core-files/old-core-files.php on line 452
Solution – Edit old-core-files.php as follows:
Add a “w” to p_nonce_field() to become wp_nonce_field()
From:
<form name="oldfiles" method="post"> <input type="hidden" name="action" value="some-action"> <?php p_nonce_field( 'some-action-nonce' );
To:
<form name="oldfiles" method="post"> <input type="hidden" name="action" value="some-action"> <?php wp_nonce_field( 'some-action-nonce' );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Fatal error: Call to undefined function p_nonce_field()’ is closed to new replies.