Untitled Snippet

Sabor Elegante | Recetas de Cocina Fáciles y Deliciosas 🍳 Sabor Elegante Inicio Recetas Nosotros Contacto Privacidad Cocina con Pasión Recetas fáciles, saludables y elegantes para todos los días Ver Recetas Espacio Publicitario 728×90 – Google AdSense Italiana Pasta Alfredo…Continue reading

Force Login to Delivery Site

/** * Require login for the front end, cache-safe. * Put in wp-content/mu-plugins/force-login.php */ add_action( ‘template_redirect’, function () { // Public exceptions. These go through normal caching. if ( is_page( array( ‘store-login’, ‘register’, ‘change-password’ ) ) ) { return; }…Continue reading

Código de widget de Klaviyo Reviews

function register_klaviyo_reviews_blocks() { // Register the blocks register_block_type( ‘klaviyo/product-reviews’, array( ‘editor_script’ => ‘klaviyo-block-editor-script’, ‘render_callback’ => ‘render_klaviyo_product_reviews’, )); register_block_type( ‘klaviyo/product-star-ratings’, array( ‘editor_script’ => ‘klaviyo-block-editor-script’, ‘render_callback’ => ‘render_klaviyo_star_ratings’, )); register_block_type( ‘klaviyo/featured-reviews’, array( ‘editor_script’ => ‘klaviyo-block-editor-script’, ‘render_callback’ => ‘render_klaviyo_featured_reviews’, )); register_block_type( ‘klaviyo/all-reviews’, array(…Continue reading

Years in Business

/** * Years in Business Shortcode * * Usage: [years_in_business year=”1985″] → 41 in 2026 * [years_in_business year=”1985″ since=”03-15″] → only counts completed years */ add_shortcode( ‘years_in_business’, function( $atts ) { $atts = shortcode_atts( array( ‘year’ => ”, // four-digit…Continue reading

Sort User ID

// 1. Add the User ID column to the users table add_filter(‘manage_users_columns’, ‘add_user_id_column’); function add_user_id_column($columns) { // Insert ‘user_id’ column after the checkbox column $new_columns = array(); foreach ($columns as $key => $value) { $new_columns[$key] = $value; if ($key ===…Continue reading