public function enqueue_assets($hook) { if ( ! in_array($hook, ['post.php', 'post-new.php'])) return; wp_add_inline_script('jquery', " jQuery(document).ready(function($) { const titleInput = $('#custom_post_title'), nativeTitle = $('#title'), volantaInput = $('#custom_volanta_field'), bajadaInput = $('#custom_bajada_textarea'); // 1. Sincronizaci¨®n y Contadores function updateCounts() { // Caracteres $('#volanta-char-count').text(volantaInput.val().length); $('#title-char-count').text(titleInput.val().length); $('#bajada-char-count').text(bajadaInput.val().length); // Sincronizar con el t¨ªtulo real de WP nativeTitle.val(titleInput.val()); // Calcular SEO (Ejemplo simple basado en largos) let score = 0; if (titleInput.val().length > 40 && titleInput.val().length < 70) score += 40; if (bajadaInput.val().length > 100) score += 30; if (volantaInput.val().length > 5) score += 30; $('#seo-percentage').text(score + '%'); $('#seo-score-fill').css({'width': score + '%', 'background': score > 70 ? '#46b450' : '#d63638'}); } // Disparar contadores al escribir $(document).on('input', '#custom_post_title, #custom_volanta_field, #custom_bajada_textarea', updateCounts); // Contador de palabras del editor TinyMCE function updateWordCount() { if (typeof tinymce !== 'undefined' && tinymce.activeEditor) { var text = tinymce.activeEditor.getContent({format: 'text'}); var count = text.trim().split(/\s+/).filter(Boolean).length; $('#total-word-count').text(count); } } // 2. Bot¨®n Auto-Negrita $('#auto-bold-btn').click(function(e) { e.preventDefault(); let ed = tinymce.activeEditor; if (!ed) return; let content = ed.getContent(); // Regex para n¨²meros, porcentajes y cifras de dinero content = content.replace(/(?$1'); ed.setContent(content); }); // 3. Bot¨®n Iframe (Popup de TinyMCE) $('#insert-iframe-btn').on('click', function(e) { e.preventDefault(); if (typeof tinymce === 'undefined' || !tinymce.activeEditor) { alert('El editor visual debe estar activo'); return; } tinymce.activeEditor.windowManager.open({ title: 'Insertar Iframe con Ep¨ªgrafe', body: [ {type: 'textbox', name: 'src', label: 'URL del Iframe (https://...)'}, {type: 'textbox', name: 'height', label: 'Altura (px)', value: '600'}, {type: 'textbox', name: 'caption', label: 'Ep¨ªgrafe / Fuente'} ], onsubmit: function(e) { tinymce.activeEditor.insertContent( '[iframe_epigrafe src=\"' + e.data.src + '\" height=\"' + e.data.height + '\" caption=\"' + e.data.caption + '\"]' ); } }); }); // Inicializar al cargar setTimeout(function() { updateCounts(); if (typeof tinymce !== 'undefined' && tinymce.activeEditor) { tinymce.activeEditor.on('KeyUp Change', updateWordCount); updateWordCount(); } }, 1000); }); "); } new WP_Editorial_Master_Suite();