This is for the Welcome Partners section.
<?php
}
-
+add_action( 'wp', 'post_pw_sess_expire' );
+function post_pw_sess_expire() {
+ global $post;
+ if ( $post->ID == 4727 ) {
+ if ( isset( $_COOKIE['wp-postpass_' . COOKIEHASH] )) {
+ // Setting a time of 0 in setcookie() forces the cookie to expire with the session
+ setcookie('wp-postpass_' . COOKIEHASH, $_COOKIE['wp-postpass_' . COOKIEHASH], strtotime( '+20 minutes' ), COOKIEPATH);
+ }
+ }
+}
?>
Author: Gaslight Media
Author URI: http://www.gaslightmedia.com
Description: A theme for Capstone
-Version: 1.0.21
+Version: 1.0.22
*/