K9 Hole Desktop Template

/* Template Name: K9 Hole Desktop Full */ // Ensure no other header is loaded if this is a full template override // Do NOT call get_header() here if the entire HTML structure is below. ?>Continue reading

Duplicate Post/Page Link (copy)

// Add duplicate button to post/page list of actions. add_filter( ‘post_row_actions’, ‘wpcode_snippet_duplicate_post_link’, 10, 2 ); add_filter( ‘page_row_actions’, ‘wpcode_snippet_duplicate_post_link’, 10, 2 ); // Let’s make sure the function doesn’t already exist. if ( ! function_exists( ‘wpcode_snippet_duplicate_post_link’ ) ) { /** *…Continue reading

ACF Display Frontend (Opt Fields with prefix/suffix)

/** * WLM712: Safe ACF Options getter with prefix/suffix (+ shortcode). * Shortcode: [wlm712_acfopt field=”…” prefix=”…” suffix=”…” esc=”html|attr|url|none”] * Example: [wlm712_acfopt field=”contact_phone_number” prefix=’‘ suffix=’‘] */ if (!defined(‘WLM712_ACFOPT_VER’)) { define(‘WLM712_ACFOPT_VER’, ‘1.0.0’); add_action(‘init’, function () { // Only run if ACF is…Continue reading

Automatische updates naar standaard

/** * Activeer alle automatische updates (globaal), * met correcte visuele weergave en standaard WordPress instellingen. */ if ( ! defined( ‘ABSPATH’ ) ) exit; /** * Hulpfunctie: check of huidige gebruiker een Pixelsz beheerder is */ function pixelsz_is_beheerder() :…Continue reading

Redirect Mobile URLs on Desktop

// This snippet ONLY runs on DESKTOP devices. // It checks if the user is on a mobile page and sends them to the desktop version. add_action( ‘template_redirect’, function() { // — Define your page pairs — // ‘desktop_page_slug’ =>…Continue reading