<?php /** * The header for our theme * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Markup */ $GLOBALS['markup_theme_options'] = markup_get_options_value(); global $markup_theme_options; $enable_slider = absint($markup_theme_options['markup_enable_slider']); $enable_box = $markup_theme_options['markup_enable_promo']; ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php //wp_body_open hook from WordPress 5.2 if ( function_exists( 'wp_body_open' ) ) { wp_body_open(); }else { do_action( 'wp_body_open' ); } ?> <div id="page" class="site "> <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'markup' ); ?></a> <?php /** * Hook - markup_action_header. * * @hooked markup_add_main_header - 10 */ do_action( 'markup_action_header' ); ?> <?php if ($enable_slider == 1 && (is_home() || is_front_page())) { ?> <section class="slider-wrapper"> <?php /* * Slider Section Hook */ do_action('markup_action_slider'); ?> </section> <?php } ?> <?php if ($enable_box == 1 && (is_home() || is_front_page() ) ) { ?> <section class="promo-slider-wrapper"> <?php /* * Boxes Section Hook */ do_action('markup_action_boxes'); ?> </section> <?php } ?>
redmi_note_7_series-sixteen_nine
Trending news

Smartphones security updates

Xiaomi Security Updates: Many Xiaomi smartphones will no longer get the update. The company has added several devices with Redmi and Mi branding to the EOS list. Let us know which smartphones are included in this list. Many Xiaomi smartphones will no longer get software updates. Many handsets including Redmi Note 7, Redmi K20, Redmi 7, Mi Play, Mi 9 SE will not get software or firmware updates. The company will no longer provide security updates to these devices.  The Chinese company says that smartphones that have been added to the end of support list will no longer be able to respond to the breach in security Xiaomi provides monthly and quarterly security patch updates to its devices for two years. 

These phones of Xiaomi, Redmi will not get the update

The company has shared the EOS list on Telegram channel. Xiaomi has included many smartphones launched about two years ago in this list. The list includes the names of Redmi K20 , Redmi Note 7 Pro, Redmi Note 7S, Redmi Note 7, Redmi 7, Redmi Y3, Mi Pad 4 Plus, Mi Pad 4, Mi Play and Mi 9 SE.

These devices will not get the update of MIUI 13. Redmi Note 7 series and Redmi K20 launched in the in the year 2019 are quite popular devices. Xiaomi has given security updates to these devices for two years, but now they will not get support.

Updates available for two years
These updates include Android security patches released by Google and company’s own bug fixes. The company launched about two years ago in this list. The list includes the names of Redmi K20 , Redmi Note 7 Pro, Redmi Note 7S, Redmi Note 7, Redmi 7, Redmi Y3, Mi Pad 4, Mi Play and Mi 9 SE.

These devices will not get the update of MIUI 13. Redmi Note 7 series and Redmi K20 launched in the year 2019 are quite popular devices. Xiaomi has given security updates to these devices for two years, but now they will not get support.

Updates available for two years
These updates include Android security patches released by Google and company’s own bug fixes. The company launched MIUI 13 earlier this year as a successor to MIUI 12.5. This is the company’s latest Android based operating system. The brand has added many new updates to this skin. Where Xiaomi is giving updates to its devices for two years. On the other hand, Samsung is giving Android updates to its devices for four years, while the security updates will continue to be available to the devices for 5 years. Xiaomi and other companies should work on increasing the time of software update.

<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Markup */ global $markup_theme_options; $copyright = wp_kses_post($markup_theme_options['markup-footer-copyright']); if ( is_active_sidebar('footer-1') || is_active_sidebar('footer-2') || is_active_sidebar('footer-3') || is_active_sidebar('footer-4') ) { $count = 0; for ( $i = 1; $i <= 4; $i++ ) { if ( is_active_sidebar( 'footer-' . $i ) ) { $count++; } } $footer_col= 4; if( $count == 4 ) { $footer_col= 4; } elseif( $count == 3) { $footer_col= 3; } elseif( $count == 2) { $footer_col= 2; } elseif( $count == 1) { $footer_col= 1; } } ?> <div class="footer-full-width"> <?php if ( is_active_sidebar( 'full-width-footer' ) ){ dynamic_sidebar( 'full-width-footer' ); } ?> </div> <div class="footer-wrap"> <div class="container"> <div class="row"> <?php for ( $i = 1; $i <= 4 ; $i++ ){ if ( is_active_sidebar( 'footer-' . $i ) ) { ?> <div class="footer-col-<?php echo absint( $footer_col ); ?>"> <div class="footer-top-box wow fadeInUp"> <?php dynamic_sidebar( 'footer-' . $i ); ?> </div> </div> <?php } } ?> </div> </div> <footer class="site-footer"> <div class="container"> <div class="row"> <div class="col-sm-6"> <div class="copyright"> <?php echo wp_kses_post( $copyright ); ?> <span class="sep"> | </span> <?php /* translators: 1: Theme name, 2: Theme author. */ printf( esc_html__( 'Theme: %1$s by %2$s.', 'markup' ), 'Markup', '<a href="https://www.templatesell.com/">Template Sell</a>' ); ?> </div> </div> <div class="col-sm-6"> <div class="footer-menu"> <?php wp_nav_menu( array( 'theme_location' => 'footer', 'menu_id' => 'footer-menu', 'menu_class' => 'footer-menu', ) ); ?> </div> </div> </div> </div> </footer> <?php do_action('markup_go_to_top_hook'); ?> </div> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>