Untitled Snippet
google-site-verification=2qRnmMOU51GWk3rx-tL2TwbUAd1kOVvjw9caXI6AvrA google-site-verification=2qRnmMOU51GWk3rx-tL2TwbUAd1kOVvjw9caXI6AvrAContinue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
google-site-verification=2qRnmMOU51GWk3rx-tL2TwbUAd1kOVvjw9caXI6AvrA google-site-verification=2qRnmMOU51GWk3rx-tL2TwbUAd1kOVvjw9caXI6AvrAContinue reading
add_filter( ‘pre_do_shortcode_tag’, static function ( $output, $tag, $atts ) { if ( ‘frm-reset-password’ !== $tag || ! is_user_logged_in() || ! isset( $_GET[‘key’], $_GET[‘login’] ) || ! class_exists( ‘FrmRegResetPWForm’ ) ) { return $output; } $key = sanitize_text_field( wp_unslash( $_GET[‘key’] )…Continue reading
/** * BwC — Campus term helpers * [bwc_campus field=”school_name|location|url”] */ function bwc_campus_shortcode( $atts ) { $atts = shortcode_atts( array( ‘field’ => ‘school_name’, ‘link’ => ‘yes’, ‘new_tab’ => ‘yes’, ‘fallback’ => ”, ), $atts, ‘bwc_campus’ ); $terms = get_the_terms( get_the_ID(),…Continue reading
add_filter( ‘plugin_action_links’, ‘disable_all_plugin_deactivation’, 10, 4 ); function disable_all_plugin_deactivation( $actions, $plugin_file, $plugin_data, $context ) { if ( get_current_user_id() !== 1 ) { // Replace 1 with your admin user ID unset( $actions[‘deactivate’] ); } return $actions; }Continue reading
/* * Snippet #113: GTranslate language switch — auto reload * * GTranslate with url_structure=none sets the googtrans cookie client-side but * does not trigger a page reload. This means PHP-rendered content (e.g. the LTL * banner PDF link) and…Continue reading
/** * ASA Partial Shipment REST Helper * * Install this snippet on EACH WooCommerce shop that uses * “Partial Shipment for WooCommerce” by WpExperts Hub. * * It exposes a read-only authenticated endpoint: * * /wp-json/wc-asa-partial/v1/outstanding?order_ids=123,124 * * Authentication…Continue reading
/** * TECNOFOTO – Restringir páginas por curso/promoción * * Campo ACF del usuario: * curso_academico * * Ejemplo: * /anuario/ => solo curso 26-27 */ add_action( ‘template_redirect’, function() { /* ================================================ * CONFIGURACIÓN * ================================================ */ $restricciones = […Continue reading
/** * ============================================================ * TECNOFOTO – ÁREA PERSONAL / INICIO * ============================================================ * * Shortcode: * [tecnofoto_inicio] * * Versión: 2.7 * * ============================================================ */ if ( ! defined( ‘ABSPATH’ ) ) { exit; } /* ============================================================ * 1. CONFIGURACIÓN…Continue reading