🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
duzhbywe
/
appmen.com.ng
/
wp-content
/
themes
/
morenews
/
inc
/
hooks
/
blocks
✏️
Editing: block-banner-main-layout-3.php
<?php $morenews_trending_posts_title = morenews_get_option('main_trending_news_section_title'); $morenews_main_posts_title = morenews_get_option('main_banner_news_section_title'); $morenews_title_class ='' ; if(empty($morenews_main_posts_title)){ $morenews_title_class .= 'no-main-slider-title'; } if(empty($morenews_trending_posts_title)){ $morenews_title_class .= ' no-trending-title'; } $morenews_editors_pick_color_class = ''; $morenews_banner_posts_color_class = ''; $morenews_trending_posts_color_class = ''; $morenews_banner_posts_filter_by = morenews_get_option('select_main_banner_carousel_filterby'); if ($morenews_banner_posts_filter_by == 'cat') { $morenews_banner_posts_category = morenews_get_option('select_slider_news_category'); if (absint($morenews_banner_posts_category) > 0) { $color_id = "category_color_" . $morenews_banner_posts_category; // retrieve the existing value(s) for this meta field. This returns an array $term_meta = get_option($color_id); $morenews_banner_posts_color_class = ($term_meta) ? $term_meta['color_class_term_meta'] : 'category-color-1'; } } $morenews_trending_posts_filter_by = morenews_get_option('select_trending_post_filterby'); if ($morenews_trending_posts_filter_by == 'cat') { $morenews_trending_posts_category = morenews_get_option('select_trending_post_category'); if (absint($morenews_trending_posts_category) > 0) { $color_id = "category_color_" . $morenews_trending_posts_category; // retrieve the existing value(s) for this meta field. This returns an array $term_meta = get_option($color_id); $morenews_trending_posts_color_class = ($term_meta) ? $term_meta['color_class_term_meta'] : 'category-color-1'; } } ?> <div class="aft-main-banner-part af-container-row-5 <?php echo esc_attr($morenews_title_class); ?>"> <div class="aft-thumb-part col-4 pad"> <div class="morenews-customizer"> <?php morenews_get_block('tabs', 'banner'); ?> </div> </div> <div class="aft-slider-part col-2 pad"> <div class="morenews-customizer"> <?php if (!empty($morenews_main_posts_title)): ?> <?php morenews_render_section_title($morenews_main_posts_title, $morenews_banner_posts_color_class); ?> <?php endif; ?> <?php morenews_get_block('carousel', 'banner'); ?> </div> </div> <div class="aft-trending-part aft-4-trending-posts col-4 pad"> <div class="morenews-customizer"> <?php if (!empty($morenews_trending_posts_title)): ?> <?php morenews_render_section_title($morenews_trending_posts_title, $morenews_trending_posts_color_class); ?> <?php endif; ?> <?php morenews_get_block('trending', 'banner'); ?> </div> </div> </div>
💾 Save Changes
❌ Cancel