Enable session in wordpress

January 22, 2010 | Filed Under Wordpress | Comments Off

wordpress does not provide the facility to enable session into wordpress.
but for enable session in wordpress you need to add

add_action(‘init’,’sessionStart’));

function sessionStart()
{
if ( ! session_id())
session_start();
}

code in your theme  function.php.

But you must installed exec-php plugin to enable php code.

Comments

Comments are closed.

© PHPInterviewQuestion.com 2009 - 2012

eXTReMe Tracker