How can i use my own (custom) session value inside wordpress?
For example: $_SESSION['myname']="4lvin"
I’ve already inserted session_start() at all page i need as following.
<?php
session_start();
$_SESSION['myname'] = "4lvin";
?>
But not working.
Just working on the self page.
It is NOT call-able from another pages (using same logic).
You need to add following lines at the top of
wp-config.phpThen add following line at the top of
header.php