if ( ! defined( ‘COMPEER_PODCAST_CURRENT_SEASON’ ) ) { define( ‘COMPEER_PODCAST_CURRENT_SEASON’, ‘5’ ); } add_action( ‘save_post’, function ( $post_id, $post ) { if ( defined( ‘DOING_AUTOSAVE’ ) && DOING_AUTOSAVE ) { return; } if ( ! $post instanceof WP_Post || $post->post_type…Continue reading
google-site-verification=2qRnmMOU51GWk3rx-tL2TwbUAd1kOVvjw9caXI6AvrA google-site-verification=2qRnmMOU51GWk3rx-tL2TwbUAd1kOVvjw9caXI6AvrAContinue 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
/** * 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
/** * SHORTCODE: [ficha_usuario] * * Reglas: * – Sin producto comprado completed: NO ve foto_orla ni foto_birrete. * – paquete-2 / paquete_2 completed: ve foto_orla. * – paquete-3 / paquete_3 completed: ve foto_orla y foto_birrete. * – archivo-1 /…Continue reading
add_action(‘wp_enqueue_scripts’, function () { if (!is_page(2029)) { return; } wp_enqueue_style( ‘leaflet-css’, ‘https://unpkg.com/[email protected]/dist/leaflet.css’, array(), ‘1.9.4’ ); wp_enqueue_script( ‘leaflet-js’, ‘https://unpkg.com/[email protected]/dist/leaflet.js’, array(), ‘1.9.4’, true ); wp_add_inline_script(‘leaflet-js’, ” document.addEventListener(‘DOMContentLoaded’, function () { const mapElement = document.getElementById(‘treasure-map’); if (!mapElement || typeof L === ‘undefined’) return;…Continue reading