| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/ifwar.ru/www/wp-content/themes/newstwenty/hooks/ |
Upload File : |
<?php
if (!function_exists('newstwenty_banner_trending_posts')):
/**
*
* @since NewsTwenty 1.0.0
*
*/
function newstwenty_banner_trending_posts() { ?>
<div class="col-md-3">
<div class="trending-posts small-list-post">
<?php
if (is_front_page() || is_home()) {
$number_of_posts = '1';
$newsup_slider_category = newsup_get_option('select_trending_news_category');
$newsup_all_posts_main = newsup_get_posts($number_of_posts, $newsup_slider_category);
if ($newsup_all_posts_main->have_posts()) :
while ($newsup_all_posts_main->have_posts()) : $newsup_all_posts_main->the_post();
global $post;
$url = newsup_get_freatured_image_url($post->ID, 'newsup-slider-full');
?>
<div class="mg-blog-post-box">
<?php newsup_post_image_display_type($post); ?>
<article class="small">
<?php newsup_post_categories(); ?>
<h4 class="entry-title title"><a href="<?php the_permalink();?>"><?php the_title();?></a></h4>
<?php newsup_post_meta(); ?>
<?php $newsup_excerpt = newsup_the_excerpt( absint( 15 ) );
if ( !empty( $newsup_excerpt ) ) { echo wp_kses_post( wpautop( $newsup_excerpt ) ); } ?>
</article>
</div>
<?php
endwhile;
endif;
wp_reset_postdata();
}
?>
</div>
</div>
<?php
}
endif;
add_action('newstwenty_action_banner_trending_posts', 'newstwenty_banner_trending_posts', 10);
//Front Page Banner
if (!function_exists('newstwenty_front_page_banner_section')) :
/**
*
* @since Newsup
*
*/
function newstwenty_front_page_banner_section() {
if (is_front_page() || is_home()) {
$newsup_enable_main_slider = newsup_get_option('show_main_news_section');
$select_vertical_slider_news_category = newsup_get_option('select_vertical_slider_news_category');
$vertical_slider_number_of_slides = newsup_get_option('vertical_slider_number_of_slides');
$all_posts_vertical = newsup_get_posts($vertical_slider_number_of_slides, $select_vertical_slider_news_category);
if ($newsup_enable_main_slider):
$main_banner_section_background_image = newsup_get_option('main_banner_section_background_image');
$main_banner_section_background_image_url = wp_get_attachment_image_src($main_banner_section_background_image, 'full');
if(!empty($main_banner_section_background_image)){ ?>
<section class="mg-fea-area over" style="background-image:url('<?php echo esc_url($main_banner_section_background_image_url[0]); ?>');">
<?php }else{ ?>
<section class="mg-fea-area">
<?php } ?>
<div class="overlay">
<div class="container-fluid">
<div class="row">
<div class="col-md-9">
<div id="homemain"class="homemain owl-carousel">
<?php
$newsup_slider_category = newsup_get_option('select_slider_news_category');
$newsup_number_of_slides = newsup_get_option('number_of_slides');
$newsup_all_posts_main = newsup_get_posts($newsup_number_of_slides, $newsup_slider_category);
$newsup_count = 1;
if ($newsup_all_posts_main->have_posts()) :
while ($newsup_all_posts_main->have_posts()) : $newsup_all_posts_main->the_post();
global $post;
$newsup_url = newsup_get_freatured_image_url($post->ID, 'newsup-slider-full'); ?>
<div class="item">
<article class='d-md-flex mg-posts-sec-post align-items-center'>
<div class="mg-sec-top-post py-3 col">
<?php newsup_post_categories(); ?>
<h4 class="entry-title title"><a href="<?php the_permalink();?>"><?php the_title();?></a></h4>
<?php newsup_post_meta(); ?>
<div class="mg-content">
<?php $newsup_excerpt = newsup_the_excerpt( absint( 25 ) );
if ( !empty( $newsup_excerpt ) ) { echo wp_kses_post( wpautop( $newsup_excerpt ) ); } ?>
</div>
</div>
<?php if(!empty($newsup_url)){ newsup_post_image_display_type($post); }
else { ?> <div class="col-12 col-md-6"><div class="mg-post-thumb back-img md"></div></div> <?php } ?>
</article>
</div>
<?php
endwhile;
endif;
wp_reset_postdata();
?>
</div>
</div>
<?php do_action('newstwenty_action_banner_trending_posts'); ?>
</div>
</div>
</div>
</section>
<!--==/ Home Slider ==-->
<?php endif; ?>
<!-- end slider-section -->
<?php }
}
endif;
add_action('newstwenty_action_front_page_main_section_1', 'newstwenty_front_page_banner_section', 40);