I needed to add a “logout” link to a theme on which I’m working that would clear the cookie WordPress sets for password protected posts. This is what I came up with: <?php if ( $_COOKIE[‘wp-postpass_’ . COOKIEHASH] ) { ?> | <a href=”<?php echo get_template_directory_uri(); ?>/includes/logout.php”>Log Out</a> <?php } ?> COOKIEHASH is a constant …
Continue reading “Adding a link to logout of password protected posts in WordPress”