/** * Theme functions and definitions * * @package Newsbulk */ if ( ! function_exists( 'newsbulk_enqueue_styles' ) ) : /** * @since 0.1 */ function newsbulk_enqueue_styles() { wp_enqueue_style( 'newsup-style-parent', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'newsbulk-style', get_stylesheet_directory_uri() . '/style.css', array( 'newsup-style-parent' ), '1.0' ); wp_enqueue_style('bootstrap', get_template_directory_uri() . '/css/bootstrap.css'); wp_dequeue_style( 'newsup-default',get_template_directory_uri() .'/css/colors/default.css'); wp_enqueue_style( 'newsbulk-default-css', get_stylesheet_directory_uri()."/css/colors/default.css" ); if(is_rtl()){ wp_enqueue_style( 'newsup_style_rtl', trailingslashit( get_template_directory_uri() ) . 'style-rtl.css' ); } } endif; add_action( 'wp_enqueue_scripts', 'newsbulk_enqueue_styles', 9999 ); function newsbulk_theme_setup() { //Load text domain for translation-ready load_theme_textdomain('newsbulk', get_stylesheet_directory() . '/languages'); require( get_stylesheet_directory() . '/hooks/hooks.php' ); require( get_stylesheet_directory() . '/customizer-default.php' ); require( get_stylesheet_directory() . '/frontpage-options.php' ); // custom header Support $args = array( 'default-image' => get_stylesheet_directory_uri() .'/images/head-back.jpg', 'width' => '1600', 'height' => '600', 'flex-height' => false, 'flex-width' => false, 'header-text' => true, 'default-text-color' => '#143745' ); add_theme_support( 'custom-header', $args ); add_theme_support( 'title-tag' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); } add_action( 'after_setup_theme', 'newsbulk_theme_setup' ); add_action( 'customize_register', 'newsbulk_customize_remove_register', 1000 ); function newsbulk_customize_remove_register($wp_customize) { $wp_customize->remove_control('tabbed_section_title'); $wp_customize->remove_control('latest_tab_title'); $wp_customize->remove_control('popular_tab_title'); $wp_customize->remove_control('trending_tab_title'); $wp_customize->remove_control('select_trending_tab_news_category'); }/** * Newsup functions and definitions * * @package Newsup */ // Global variables define define( 'NEWSUP_THEME_DIR', get_template_directory() . '/' ); define( 'NEWSUP_THEME_URI', get_template_directory_uri() . '/' ); define( 'NEWS_THEME_SETTINGS', 'newsup-settings' ); if ( is_admin() ) { require_once get_template_directory() . '/admin/admin.php'; } $newsup_theme_path = get_template_directory() . '/inc/ansar/'; require( $newsup_theme_path . '/newsup-custom-navwalker.php' ); require( $newsup_theme_path . '/default_menu_walker.php' ); require( $newsup_theme_path . '/font/font.php'); require( $newsup_theme_path . '/template-tags.php'); require( $newsup_theme_path . '/template-functions.php'); require( $newsup_theme_path . '/widgets/widgets-common-functions.php'); require ( $newsup_theme_path . '/custom-control/custom-control.php'); require ( $newsup_theme_path . '/customizer-admin/newsup-admin-plugin-install.php'); require_once( trailingslashit( get_template_directory() ) . 'inc/ansar/customize-pro/class-customize.php' ); // Theme version. $newsup_theme = wp_get_theme(); if ( ! defined( 'NEWSUP_THEME_VERSION' ) ) { define( 'NEWSUP_THEME_VERSION', $newsup_theme->get( 'Version' ) ); } if ( ! defined( 'NEWSUP_THEME_NAME' ) ) { define( 'NEWSUP_THEME_NAME', $newsup_theme->get( 'Name' ) ); } /*-----------------------------------------------------------------------------------*/ /* Enqueue scripts and styles. /*-----------------------------------------------------------------------------------*/ require( $newsup_theme_path .'/enqueue.php'); /* ----------------------------------------------------------------------------------- */ /* Customizer */ /* ----------------------------------------------------------------------------------- */ require( $newsup_theme_path . '/customize/customizer.php'); /* ----------------------------------------------------------------------------------- */ /* Customizer */ /* ----------------------------------------------------------------------------------- */ require( $newsup_theme_path . '/widgets/widgets-init.php'); /* ----------------------------------------------------------------------------------- */ /* Widget */ /* ----------------------------------------------------------------------------------- */ require( $newsup_theme_path . '/hooks/hooks-init.php'); require_once( trailingslashit( get_template_directory() ) . 'inc/ansar/customize-pro/class-customize.php' ); /** * Load Jetpack compatibility file. */ if (defined('JETPACK__VERSION')) { require get_template_directory() . '/inc/ansar/jetpack.php'; } if ( ! function_exists( 'newsup_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function newsup_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on newsup, use a find and replace * to change 'newsup' to the name of your theme in all the template files. */ load_theme_textdomain( 'newsup', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* Add theme support for gutenberg block */ add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); add_theme_support('wp-block-styles'); add_theme_support('custom-spacing'); add_theme_support('appearance-tools'); add_theme_support('custom-units'); add_theme_support('custom-line-height'); add_theme_support('border'); add_theme_support( 'link-color' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary menu', 'newsup' ), 'footer' => __( 'Footer menu', 'newsup' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ) ); /* * Enable support for Post Formats on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'image', 'video', 'audio', 'gallery' ) ); $args = array( 'default-color' => '#eee', 'default-image' => '', ); add_theme_support( 'custom-background', $args ); // Set up the woocommerce feature. add_theme_support( 'woocommerce'); // Woocommerce Gallery Support add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); // Added theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Add support for responsive embedded content. add_theme_support( 'responsive-embeds' ); //Custom logo add_theme_support( 'custom-logo', array( 'unlink-homepage-logo' => true, // Add Here! ) ); // custom header Support $args = array( 'default-image' => get_template_directory_uri() .'/images/head-back.jpg', 'width' => '1600', 'height' => '600', 'flex-height' => false, 'flex-width' => false, 'header-text' => true, 'default-text-color' => 'fff', 'wp-head-callback' => 'newsup_header_color', ); add_theme_support( 'custom-header', $args ); // Enable default block styles for Gutenberg blocks add_theme_support( 'wp-block-styles' ); // Add custom styles to the editor add_editor_style( array( 'css/editor-style.css') ); } endif; add_action( 'after_setup_theme', 'newsup_setup' ); function newsup_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } add_filter('get_custom_logo','newsup_logo_class'); function newsup_logo_class($html) { $html = str_replace('custom-logo-link', 'navbar-brand', $html); return $html; } /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function newsup_content_width() { $GLOBALS['content_width'] = apply_filters( 'newsup_content_width', 640 ); } add_action( 'after_setup_theme', 'newsup_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function newsup_widgets_init() { $newsup_footer_column_layout = esc_attr(get_theme_mod('newsup_footer_column_layout',3)); $newsup_footer_column_layout = 12 / $newsup_footer_column_layout; register_sidebar( array( 'name' => __( 'Sidebar Widget Area', 'newsup' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '<div id="%1$s" class="mg-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<div class="mg-wid-title"><h6 class="wtitle">', 'after_title' => '</h6></div>', ) ); register_sidebar( array( 'name' => __( 'Front-page Content Section', 'newsup'), 'id' => 'front-page-content', 'description' => '', 'before_widget' => '<div id="%1$s" class="newsup-front-page-content-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<div class="mg-sec-title"><h4>', 'after_title' => '</h4></div>', ) ); register_sidebar( array( 'name' => __( 'Front-page Sidebar Section', 'newsup'), 'id' => 'front-page-sidebar', 'description' => '', 'before_widget' => '<div id="%1$s" class="mg-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<div class="mg-wid-title"><h6 class="wtitle">', 'after_title' => '</h6></div>', ) ); register_sidebar( array( 'name' => __( 'Footer Widget Area', 'newsup' ), 'id' => 'footer_widget_area', 'description' => '', 'before_widget' => '<div id="%1$s" class="col-md-'.$newsup_footer_column_layout.' rotateInDownLeft animated mg-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h6>', 'after_title' => '</h6>', ) ); } add_action( 'widgets_init', 'newsup_widgets_init' ); add_filter('wp_nav_menu_items', 'newsup_add_home_link', 1, 2); function newsup_add_home_link($items, $args){ if( $args->theme_location == 'primary' ){ $item = '<li class="active home"><a class="homebtn" href="'. esc_url( home_url() ) .'">' . "<span class='fa-solid fa-house-chimney'></span>" . '</a></li>'; $items = $item . $items; } return $items; } if ( ! function_exists( 'wp_body_open' ) ) { /** * Shim for wp_body_open, ensuring backward compatibility with versions of WordPress older than 5.2. */ function wp_body_open() { do_action( 'wp_body_open' ); } }<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <!-- This site is optimized with the Yoast SEO plugin v28.1 - https://yoast.com/product/yoast-seo-wordpress/ --> <link rel="canonical" href="https://26television.com/?p=9328" /> <meta property="og:locale" content="es_ES" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Arrestan en Turqu??a a un sospechoso del asesinato del presidente de Hait??, Jovenel Mo??se - 26 Televisión" /> <meta property="og:description" content="Las autoridades turcas arrestaron a un hombre considerado sospechoso de ???gran inter??s??? en el asesinato en julio del presidente haitiano Jovenel Mo??se, inform?? el lunes el ministro de Relaciones Exteriores de Hait??, Claude Joseph. ???Acabo de tener una conversaci??n telef??nica con el ministro turco, mi amigo Mevlut Cavusoglu, para agradecer a Turqu??a por el arresto […]" /> <meta property="og:url" content="https://26television.com/?p=9328" /> <meta property="og:site_name" content="26 Televisión" /> <meta property="article:publisher" content="https://www.facebook.com/Canal-Veintiseis-103472998105986" /> <meta property="article:published_time" content="2021-11-17T02:00:00+00:00" /> <meta property="og:image" content="https://26television.com/wp-content/uploads/2021/11/2-8.jpg" /> <meta property="og:image:width" content="760" /> <meta property="og:image:height" content="430" /> <meta property="og:image:type" content="image/jpeg" /> <meta name="author" content="administrator" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:creator" content="@CANAL26XELA" /> <meta name="twitter:site" content="@CANAL26XELA" /> <meta name="twitter:label1" content="Written by" /> <meta name="twitter:data1" content="administrator" /> <meta name="twitter:label2" content="Est. reading time" /> <meta name="twitter:data2" content="1 minuto" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/26television.com\/?p=9328#article","isPartOf":{"@id":"https:\/\/26television.com\/?p=9328"},"author":{"name":"administrator","@id":"https:\/\/26television.com\/#\/schema\/person\/71be2028f0d29e8e7c64f681e7454e67"},"headline":"Arrestan en Turqu??a a un sospechoso del asesinato del presidente de Hait??, Jovenel Mo??se","datePublished":"2021-11-17T02:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/26television.com\/?p=9328"},"wordCount":224,"commentCount":0,"image":{"@id":"https:\/\/26television.com\/?p=9328#primaryimage"},"thumbnailUrl":"https:\/\/26television.com\/wp-content\/uploads\/2021\/11\/2-8.jpg","keywords":["INTERNACIONALES"],"articleSection":["Internacionales"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/26television.com\/?p=9328#respond"]}]},{"@type":"WebPage","@id":"https:\/\/26television.com\/?p=9328","url":"https:\/\/26television.com\/?p=9328","name":"Arrestan en Turqu??a a un sospechoso del asesinato del presidente de Hait??, Jovenel Mo??se - 26 Televisión","isPartOf":{"@id":"https:\/\/26television.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/26television.com\/?p=9328#primaryimage"},"image":{"@id":"https:\/\/26television.com\/?p=9328#primaryimage"},"thumbnailUrl":"https:\/\/26television.com\/wp-content\/uploads\/2021\/11\/2-8.jpg","datePublished":"2021-11-17T02:00:00+00:00","author":{"@id":"https:\/\/26television.com\/#\/schema\/person\/71be2028f0d29e8e7c64f681e7454e67"},"breadcrumb":{"@id":"https:\/\/26television.com\/?p=9328#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/26television.com\/?p=9328"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/26television.com\/?p=9328#primaryimage","url":"https:\/\/26television.com\/wp-content\/uploads\/2021\/11\/2-8.jpg","contentUrl":"https:\/\/26television.com\/wp-content\/uploads\/2021\/11\/2-8.jpg","width":760,"height":430},{"@type":"BreadcrumbList","@id":"https:\/\/26television.com\/?p=9328#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/26television.com\/"},{"@type":"ListItem","position":2,"name":"Arrestan en Turqu??a a un sospechoso del asesinato del presidente de Hait??, Jovenel Mo??se"}]},{"@type":"WebSite","@id":"https:\/\/26television.com\/#website","url":"https:\/\/26television.com\/","name":"26 Television","description":"Noticias Diarias y el Mejor contenido","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/26television.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Person","@id":"https:\/\/26television.com\/#\/schema\/person\/71be2028f0d29e8e7c64f681e7454e67","name":"administrator","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/secure.gravatar.com\/avatar\/15f4bcc7a3b51a83a309e69e3b1eb6276802826123ca201358599e4dcb0c86e3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/15f4bcc7a3b51a83a309e69e3b1eb6276802826123ca201358599e4dcb0c86e3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/15f4bcc7a3b51a83a309e69e3b1eb6276802826123ca201358599e4dcb0c86e3?s=96&d=mm&r=g","caption":"administrator"},"url":"https:\/\/26television.com\/?author=1"}]}</script> <!-- / Yoast SEO plugin. --> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" type="application/rss+xml" title="26 Televisión » Arrestan en Turqu??a a un sospechoso del asesinato del presidente de Hait??, Jovenel Mo??se RSS de los comentarios" href="https://26television.com/?feed=rss2&p=9328" /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://26television.com/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2F26television.com%2F%3Fp%3D9328" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://26television.com/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2F26television.com%2F%3Fp%3D9328&format=xml" /> <style id="wp-img-auto-sizes-contain-inline-css"> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id="wp-emoji-styles-inline-css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id="wp-block-library-inline-css"> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ </style> <style id="classic-theme-styles-inline-css"> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='wc-captcha-frontend-css' href='https://26television.com/wp-content/plugins/wc-captcha/css/frontend.css?ver=7.0.2' media='all' /> <link rel='stylesheet' id='weather-atlas-public-css' href='https://26television.com/wp-content/plugins/weather-atlas/public/css/weather-atlas-public.min.css?ver=3.0.4' media='all' /> <link rel='stylesheet' id='weather-icons-css' href='https://26television.com/wp-content/plugins/weather-atlas/public/font/weather-icons/weather-icons.min.css?ver=3.0.4' media='all' /> <link rel='stylesheet' id='wpb-google-fonts-css' href='//fonts.googleapis.com/css?family=Open+Sans&ver=7.0.2' media='all' /> <link rel='stylesheet' id='wp-block-paragraph-css' href='https://26television.com/wp-includes/blocks/paragraph/style.min.css?ver=7.0.2' media='all' /> <link rel='stylesheet' id='wp-block-quote-css' href='https://26television.com/wp-includes/blocks/quote/style.min.css?ver=7.0.2' media='all' /> <link rel="https://api.w.org/" href="https://26television.com/index.php?rest_route=/" /><link rel="alternate" title="JSON" type="application/json" href="https://26television.com/index.php?rest_route=/wp/v2/posts/9328" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://26television.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 7.0.2" /> <link rel='shortlink' href='https://26television.com/?p=9328' /> <link rel="icon" href="https://26television.com/wp-content/uploads/2020/09/cropped-Untitled-2-copy-32x32.png" sizes="32x32" /> <link rel="icon" href="https://26television.com/wp-content/uploads/2020/09/cropped-Untitled-2-copy-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://26television.com/wp-content/uploads/2020/09/cropped-Untitled-2-copy-180x180.png" /> <meta name="msapplication-TileImage" content="https://26television.com/wp-content/uploads/2020/09/cropped-Untitled-2-copy-270x270.png" /> <style id="wp-custom-css"> /* Barra superior y menú principal */ .navbar-wp, .site-header, .desk-header, .m-header { background-color: #001F3F !important; } /* Botones principales */ .btn-primary, button, input[type="submit"] { background-color: #001F3F !important; border-color: #001F3F !important; color: #fff !important; } /* Etiquetas como "Últimas Noticias" */ .mg-headwidget, .mg-headwidget .widget-title, .mg-headwidget .widget-title span { background-color: #001F3F !important; color: #fff !important; } /* Top bar (franja superior) dentro del header del tema */ .mg-headwidget .mg-head-detail { background-color: #001F3F !important; /* azul marino */ color: #ffffff !important; } /* Si la franja tiene borde inferior rojo, lo neutralizamos */ .mg-headwidget .mg-head-detail { border-bottom: 0 !important; box-shadow: none !important; } /* Enlaces, iconos y texto dentro del top bar */ .mg-headwidget .mg-head-detail a, .mg-headwidget .mg-head-detail i, .mg-headwidget .mg-head-detail span { color: #ffffff !important; } /* Por si el tema aplica gradiente/imagen al top bar */ .mg-headwidget .mg-head-detail { background-image: none !important; } /* El área de banner que trae imagen NO es la franja roja, pero si quieres que también se vea en azul marino sin imagen: .mg-headwidget .mg-nav-widget-area-back { background-color: #141347 !important; background-image: none !important; /* elimina la imagen inline */ } </style> </head> <body class="wp-singular post-template-default single single-post postid-9328 single-format-standard wp-theme-newsup wp-child-theme-newsbulk" > <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content"> Skip to content</a> <div class="wrapper"> <header class="mg-headwidget"> <!--==================== TOP BAR ====================--> <div class="clearfix"></div> <div class="mg-nav-widget-area-back" style='background-image: url("https://26television.com/wp-content/uploads/2025/11/jpeg-1.jpg" );'> <div class="overlay"> <div class="inner" style="background-color:rgba(32,47,91,0.4);" > <div class="container-fluid"> <div class="mg-nav-widget-area"> <div class="row align-items-center"> <div class="col-12 text-center mx-auto "> <div class="navbar-header"> <div class="site-logo"> </div> <div class="site-branding-text d-none"> <p class="site-title"> <a href="https://26television.com/" rel="home">26 Televisión</a></p> <p class="site-description">Noticias Diarias y el Mejor contenido</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="mg-menu-full"> <nav class="navbar navbar-expand-lg navbar-wp"> <div class="container-fluid"> <!-- Right nav --> <div class="m-header align-items-center"> <a class="mobilehomebtn" href="https://26television.com"><span class="fas fa-home"></span></a> <!-- navbar-toggle --> <button class="navbar-toggler mx-auto" type="button" data-toggle="collapse" data-target="#navbar-wp" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <i class="fas fa-bars"></i> </button> <!-- /navbar-toggle --> <div class="dropdown show mg-search-box pr-2 d-none"> <a class="dropdown-toggle msearch ml-auto" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fas fa-search"></i> </a> <div class="dropdown-menu searchinner" aria-labelledby="dropdownMenuLink"> <form role="search" method="get" id="searchform" action="https://26television.com/"> <div class="input-group"> <input type="search" class="form-control" placeholder="Search" value="" name="s" /> <span class="input-group-btn btn-default"> <button type="submit" class="btn"> <i class="fas fa-search"></i> </button> </span> </div> </form> </div> </div> </div> <!-- /Right nav --> <div class="collapse navbar-collapse" id="navbar-wp"> <div class="d-md-block">