Skip to content

Instantly share code, notes, and snippets.

View bremercreative's full-sized avatar

bremercreative

View GitHub Profile
@bremercreative
bremercreative / voxel - password protected user entries
Last active February 19, 2024 16:45
voxel - password protected user entries
/////////// Step 1 ///////////
- for your desired post type add the two following custom fields
1. switcher (field key: switcher-pw)
2. text (field key: text-passwort)
@bremercreative
bremercreative / voxel - logout confirmation
Last active February 19, 2024 17:00
voxel - logout confirmation
/////////// Step 1 ///////////
- deactivate default wordpress confirmation page with the following php snippet
function custom_logout_without_confirmation() {
if (isset($_GET['appout'])) {
wp_logout();
wp_redirect(home_url());
exit();
}