Enable Excerpt Field on Pages and Post Content
add_post_type_support( ‘page’, ‘excerpt’ );Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
add_post_type_support( ‘page’, ‘excerpt’ );Continue reading
add_filter( ‘get_the_excerpt’, function( $excerpt ) { remove_filter( ‘the_content’, array( SiteOrigin_Panels::single(), ‘generate_post_content’ ) ); return $excerpt; } ); add_filter( ‘the_content’, function( $content ) { add_filter( ‘the_content’, array( SiteOrigin_Panels::single(), ‘generate_post_content’ ) ); return $content; }, 11 );Continue reading
add_action( ‘wp_enqueue_scripts’, function() { wp_add_inline_script( ‘jquery’, ‘ jQuery(document).on(“click”, “.uvri-tab-btn”, function() { jQuery(“.uvri-tab-btn”).removeClass(“active”); jQuery(“.uvri-tab-panel”).removeClass(“active”); jQuery(this).addClass(“active”); jQuery(“#” + jQuery(this).data(“tab”)).addClass(“active”); }); ‘ ); } ); function uvri_podcast_episodes_shortcode() { $year_season = array( 2023 => 1, 2024 => 2, 2025 => 3, 2026 => 4,…Continue reading
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