Skip to content

Instantly share code, notes, and snippets.

@wildiney
Created October 11, 2013 01:34
Show Gist options
  • Save wildiney/6928330 to your computer and use it in GitHub Desktop.
Save wildiney/6928330 to your computer and use it in GitHub Desktop.
<?php
add_action( 'init', 'smashing_session_start' );
function smashing_session_start() {
if ( !session_id() ) {
session_start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment