pebo / wp_nonce_helper
basic support class for wordpress nonce ussage
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/pebo/wp_nonce_helper
This package is not auto-updated.
Last update: 2025-12-27 16:46:57 UTC
README
Helper clas for handling nonces on WorPress.
Ussage:
to include this class in to your project:
- download or clone this project and place the file Pebo_wp_nonce_helper.php in to your library folder (inside your project).
- include the class in your code file:
include_once dirname(__FILE__).'/you_library_path/Pebo_wp_nonce_helper.php';
- Or using composer:
composer require pebo/wp_nonce_helper=dev-master
- Then call methods using the formula:
Pebo_wp_nonce_helper.php::method_name($args ...);
Functionality:
Setting nonces life time:
Pebo_wp_nonce_helper.php::set_nonce_duration($time_in_secconds);
Creating a nonce url (for a link):
<a href="<?php print Pebo_wp_nonce_helper::create_nonce_url(admin_url('options.php?page=my_plugin_settings'), 'doing_something', 'my_nonce');?>" class="button button-primary"><?php esc_html_e('Do Something!', 'my-plugin-textdomain');?></a>
Nonce validation:
if(Pebo_wp_nonce_helper::nonce_verify('nonce_name', 'action_name') != false){
//Do Something..
{
Create nonce hidden field inside a form :
<form method="post"> <!-- some inputs here ... --> <?phpValidate a nonce hidden field.Pebo_wp_nonce_helper::get_hidden_field( 'name_of_my_action', 'name_of_nonce_field' );
?>
</form>
if(Pebo_wp_nonce_helper::check_nonce_field('name_of_my_action', 'name_of_nonce_field') != false){
//Do Something..
{