Use PHP session in wordpress.
add_action('init', 'myStartSession', 1); function myStartSession() { if(!session_id()) { session_start(); } }
Read More Posts
- How to convert minutes in hours and minutes in php?
- How to upload file into wordpress child theme folder in wordpress ( file upload) ?
- How to remove the product rating on product loops in woocommerce?
- How to get all unique years from a date column using Sql(Mysql)?
- How to redirect in php after resubmittion with button?