diff --git a/wordpress/wp-content/mu-plugins/fea-homepage.php b/wordpress/wp-content/mu-plugins/fea-homepage.php index a8a2e72..d09ec13 100644 --- a/wordpress/wp-content/mu-plugins/fea-homepage.php +++ b/wordpress/wp-content/mu-plugins/fea-homepage.php @@ -749,78 +749,31 @@ add_shortcode('fea_multimedia', function($atts) { return $html . ''; }); -// ── Shortcode: [fea_prefooter] — 3 columnas sobre el footer ────────────────── -add_shortcode('fea_prefooter', function() { - $uploads = wp_upload_dir()['baseurl']; - - // Columna centro: última noticia de alcance (cat term_id=41) - $latest_noticias = get_posts([ +// ── Shortcode: [fea_noticia_centro] — bloque central del footer (Noticias) ─── +add_shortcode('fea_noticia_centro', function() { + $uploads = wp_upload_dir()['baseurl']; + $cat_url = get_category_link(fea_cat(41)); + $latest = get_posts([ 'posts_per_page' => 1, 'category__in' => [fea_cat(41)], 'post_status' => 'publish', 'orderby' => 'date', 'order' => 'DESC', ]); - $cat_noticias_url = get_category_link(fea_cat(41)); - $noticia_title = !empty($latest_noticias) ? fea_title($latest_noticias[0]->post_title) : ''; - $noticia_url = !empty($latest_noticias) ? get_permalink($latest_noticias[0]->ID) : $cat_noticias_url; + $title = !empty($latest) ? fea_title($latest[0]->post_title) : ''; + $url = !empty($latest) ? get_permalink($latest[0]->ID) : $cat_url; - // Columna derecha: último vídeo (cat term_id=58) - $latest_video = get_posts([ - 'posts_per_page' => 1, - 'category__in' => [fea_cat(58)], - 'post_status' => 'publish', - 'orderby' => 'date', - 'order' => 'DESC', - ]); - $video_url = !empty($latest_video) ? get_permalink($latest_video[0]->ID) : get_category_link(fea_cat(58)); - - $effa_url = get_permalink(42726); - $suma_url = get_permalink(18036); - $libros_url = get_category_link(1616); - $videos_escuela_url = get_permalink(21921); - - ob_start(); ?> -
- -.fea-prefooter{display:flex;gap:1.5rem;justify-content:center;align-items:flex-start;padding:2rem 1rem;border-top:2px solid #e5e5e5;margin-top:3rem;} -.fea-prefooter-col{flex:1;max-width:320px;text-align:center;} -.fea-prefooter-noticia{margin-top:0.6rem;font-size:0.85rem;font-weight:600;color:#0000cc;line-height:1.3;} -.fea-prefooter-noticia a{color:#0000cc;} -@media(max-width:640px){.fea-prefooter{flex-direction:column;align-items:center;}.fea-prefooter-col{max-width:100%;}} -'; - return $css . ob_get_clean(); + $html = ''; + $html .= '
';
+ $html .= '';
+ if ($title) {
+ $html .= '' + . '' + . esc_html($title) . '
'; + } + return $html; }); // ── Reescribir links internos al idioma activo (Polylang) ─────────────────