function ec_news_desk_pendientes() { $agente_db = new wpdb( 'agentet', 'Agente2026!DB#Secure', 'agente_noticias', 'localhost' ); $noticias = $agente_db->get_results(" SELECT id, title_original, fuente, pubDate, url_original FROM noticias WHERE estado_editor='pendiente' ORDER BY pubDate DESC LIMIT 100 "); echo '
'; echo '

Noticias pendientes

'; echo ''; echo ''; echo ''; if (!empty($noticias)) { foreach ($noticias as $noticia) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } } else { echo ''; echo ''; echo ''; } echo ''; echo '
ID Fecha Fuente Título Acciones
' . intval($noticia->id) . '' . esc_html($noticia->pubDate) . '' . esc_html($noticia->fuente) . '' . esc_html($noticia->title_original) . ''; echo 'Ver original'; echo '
No se encontraron noticias pendientes.
'; echo '
'; }