2025-09-12 21:24:58 -03:00
< ? php
/**
* Template para a página inicial
*
2025-09-21 01:57:36 -03:00
* @ package TerraDoRei
2025-09-12 21:24:58 -03:00
*/
get_header ();
?>
< main id = " primary " class = " site-main " >
2025-09-14 16:13:19 -03:00
< ? php
$hero_bg_image = get_theme_mod ( 'hero_background_image' );
$hero_style = '' ;
if ( $hero_bg_image ) {
$hero_style = 'style="background-image: url(' . esc_url ( $hero_bg_image ) . '); background-size: cover; background-position: center;"' ;
}
?>
< section class = " hero-section " < ? php echo $hero_style ; ?> >
< ? php if ( $hero_bg_image ) : ?> <div class="hero-overlay"></div><?php endif; ?>
2025-09-12 21:24:58 -03:00
< div class = " container " >
< div class = " hero-content " >
2025-09-21 01:57:36 -03:00
< h1 >< ? php echo esc_html ( get_theme_mod ( 'hero_title' , __ ( 'Notícias Corporativas' , 'terradorei' ))); ?> </h1>
< p >< ? php echo wp_kses_post ( get_theme_mod ( 'hero_description' , __ ( 'Mantenha-se atualizado com as últimas notícias e informações da empresa' , 'terradorei' ))); ?> </p>
2025-09-12 21:24:58 -03:00
< div class = " hero-cta " >
2025-09-14 16:13:19 -03:00
< a href = " <?php echo esc_url(get_theme_mod('hero_button_primary_link', get_permalink(get_option('page_for_posts')))); ?> " class = " btn btn-white " >
< i class = " fas fa-newspaper " ></ i >
2025-09-21 01:57:36 -03:00
< ? php echo esc_html ( get_theme_mod ( 'hero_button_primary_text' , __ ( 'Ver Notícias' , 'terradorei' ))); ?>
2025-09-12 21:24:58 -03:00
</ a >
2025-09-14 16:13:19 -03:00
< a href = " <?php echo esc_url(get_theme_mod('hero_button_secondary_link', '#')); ?> " class = " btn btn-secondary " >
< i class = " fas fa-info-circle " ></ i >
2025-09-21 01:57:36 -03:00
< ? php echo esc_html ( get_theme_mod ( 'hero_button_secondary_text' , __ ( 'Saiba Mais' , 'terradorei' ))); ?>
2025-09-12 21:24:58 -03:00
</ a >
</ div >
</ div >
</ div >
</ section >
< section class = " quick-access " >
< div class = " container " >
< div class = " quick-access-buttons " >
< ? php
$buttons_query = new WP_Query ( array (
'post_type' => 'quick_access_button' ,
'posts_per_page' => - 1 , // Mostra todos os botões
'orderby' => 'menu_order' ,
'order' => 'ASC'
));
if ( $buttons_query -> have_posts ()) :
while ( $buttons_query -> have_posts ()) : $buttons_query -> the_post ();
$icon = get_post_meta ( get_the_ID (), '_button_icon' , true );
$link = get_post_meta ( get_the_ID (), '_button_link' , true );
?>
< a href = " <?php echo esc_url( $link ); ?> " class = " quick-access-button " >
< ? php if ( $icon ) : ?>
< div class = " quick-access-icon " >< i class = " <?php echo esc_attr( $icon ); ?> " ></ i ></ div >
< ? php endif ; ?>
< h3 class = " quick-access-title " >< ? php the_title (); ?> </h3>
< div class = " quick-access-description " >< ? php the_content (); ?> </div>
</ a >
< ? php
endwhile ;
wp_reset_postdata ();
endif ;
?>
</ div >
</ div >
</ section >
< section class = " featured-news " >
< div class = " container " >
2025-09-21 01:57:36 -03:00
< h2 class = " section-title " >< ? php esc_html_e ( 'Notícias em Destaque' , 'terradorei' ); ?> </h2>
2025-09-12 21:24:58 -03:00
< div class = " featured-news-container " >
< div class = " news-main " >
< div class = " featured-news-grid " >
< ? php
$featured_args = array (
'posts_per_page' => 2 ,
'category_name' => 'destaque' , // Mostra posts da categoria "destaque"
'ignore_sticky_posts' => 1 ,
);
$featured_query = new WP_Query ( $featured_args );
if ( $featured_query -> have_posts ()) :
while ( $featured_query -> have_posts ()) : $featured_query -> the_post ();
?>
< article id = " post-<?php the_ID(); ?> " < ? php post_class ( 'featured-news-item' ); ?> >
< div class = " featured-thumbnail " >
< ? php if ( has_post_thumbnail ()) : ?>
< a href = " <?php the_permalink(); ?> " >
< ? php the_post_thumbnail ( 'large' ); ?>
</ a >
< ? php endif ; ?>
2025-09-21 01:57:36 -03:00
< div class = " featured-badge " >< ? php esc_html_e ( 'Destaque' , 'terradorei' ); ?> </div>
2025-09-12 21:24:58 -03:00
</ div >
< div class = " featured-content " >
< header class = " featured-header " >
< h3 class = " featured-title " >< a href = " <?php the_permalink(); ?> " >< ? php the_title (); ?> </a></h3>
2025-09-21 01:57:36 -03:00
< ? php terradorei_post_meta (); ?>
2025-09-12 21:24:58 -03:00
</ header >
< div class = " featured-excerpt " >
< ? php the_excerpt (); ?>
</ div >
< footer class = " featured-footer " >
2025-09-21 01:57:36 -03:00
< a href = " <?php the_permalink(); ?> " class = " btn btn-primary " >< ? php esc_html_e ( 'Leia mais' , 'terradorei' ); ?> </a>
2025-09-12 21:24:58 -03:00
</ footer >
</ div >
</ article >
< ? php
endwhile ;
wp_reset_postdata ();
else :
?>
2025-09-21 01:57:36 -03:00
< p >< ? php esc_html_e ( 'Nenhuma notícia em destaque encontrada.' , 'terradorei' ); ?> </p>
2025-09-12 21:24:58 -03:00
< ? php
endif ;
?>
</ div >
</ div >
< div class = " sidebar " >
< div class = " sidebar-widget calendar-widget " >
< div class = " calendar-container " >
< ? php echo do_shortcode ( '[mostra-calendario-widget]' ); ?>
</ div >
</ div >
< div class = " sidebar-widget events-widget " >
< div class = " events-list " >
< ? php echo do_shortcode ( '[mostra-prox-eventos]' ); ?>
</ div >
</ div >
</ div >
</ div >
</ div >
</ section >
< section class = " latest-news " >
< div class = " container " >
2025-09-21 01:57:36 -03:00
< h2 class = " section-title " >< ? php esc_html_e ( 'Últimas Notícias' , 'terradorei' ); ?> </h2>
2025-09-12 21:24:58 -03:00
< div class = " news-grid " >
< ? php
$latest_args = array (
'posts_per_page' => 6 ,
'ignore_sticky_posts' => 1
);
$latest_query = new WP_Query ( $latest_args );
if ( $latest_query -> have_posts ()) :
while ( $latest_query -> have_posts ()) : $latest_query -> the_post ();
?>
< article id = " post-<?php the_ID(); ?> " < ? php post_class ( 'news-card' ); ?> >
< div class = " news-thumbnail " >
< ? php if ( has_post_thumbnail ()) : ?>
< a href = " <?php the_permalink(); ?> " >
< ? php the_post_thumbnail ( 'medium' ); ?>
</ a >
< ? php endif ; ?>
</ div >
< div class = " news-content " >
< header class = " news-header " >
< h3 class = " news-title " >< a href = " <?php the_permalink(); ?> " >< ? php the_title (); ?> </a></h3>
2025-09-21 01:57:36 -03:00
< ? php terradorei_post_meta (); ?>
2025-09-12 21:24:58 -03:00
</ header >
< div class = " news-excerpt " >
< ? php the_excerpt (); ?>
</ div >
< footer class = " news-footer " >
2025-09-21 01:57:36 -03:00
< a href = " <?php the_permalink(); ?> " class = " btn btn-primary " >< ? php esc_html_e ( 'Leia mais' , 'terradorei' ); ?> </a>
2025-09-12 21:24:58 -03:00
</ footer >
</ div >
</ article >
< ? php
endwhile ;
wp_reset_postdata ();
else :
?>
2025-09-21 01:57:36 -03:00
< p >< ? php esc_html_e ( 'Nenhuma notícia encontrada.' , 'terradorei' ); ?> </p>
2025-09-12 21:24:58 -03:00
< ? php
endif ;
?>
</ div >
< div class = " view-all " >
2025-09-21 01:57:36 -03:00
< a href = " <?php echo esc_url(get_permalink(get_option('page_for_posts'))); ?> " class = " btn btn-primary " >< ? php esc_html_e ( 'Ver todas as notícias' , 'terradorei' ); ?> </a>
2025-09-12 21:24:58 -03:00
</ div >
</ div >
</ section >
</ main ><!-- #main -->
< ? php
get_footer ();