![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/www/wp-content/themes/newsup/inc/ansar/hooks/ |
<?php if (!function_exists('newsup_footer_missed')) : /** * Footer You Missed * * @since Newsup * */ function newsup_footer_missed() { $you_missed_enable = esc_attr(get_theme_mod('you_missed_enable','true')); if($you_missed_enable == true) { ?> <div class="missed-inner"> <div class="row"> <?php $you_missed_title = get_theme_mod('you_missed_title', esc_html('You missed','newsup')); if($you_missed_title) { ?> <div class="col-md-12"> <div class="mg-sec-title"> <!-- mg-sec-title --> <h4><?php echo esc_html($you_missed_title); ?></h4> </div> </div> <?php } global $post; $newsup_you_missed_loop = new WP_Query(array( 'post_type' => 'post', 'posts_per_page' => 4, 'order' => 'DESC', 'ignore_sticky_posts' => true)); if ( $newsup_you_missed_loop->have_posts() ) : while ( $newsup_you_missed_loop->have_posts() ) : $newsup_you_missed_loop->the_post(); $url = newsup_get_freatured_image_url($post->ID, 'newsup-featured'); ?> <!--col-md-3--> <div class="col-lg-3 col-sm-6 pulse animated"> <div class="mg-blog-post-3 minh back-img mb-lg-0" <?php if(has_post_thumbnail()) { ?> style="background-image: url('<?php echo esc_url($url); ?>');" <?php } ?>> <a class="link-div" href="<?php the_permalink(); ?>"></a> <div class="mg-blog-inner"> <?php newsup_post_categories(); ?> <h4 class="title"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute( array('before' => 'Permalink to: ','after' => '') ); ?>"> <?php the_title(); ?></a> </h4> <?php newsup_post_meta(); ?> </div> </div> </div> <!--/col-md-3--> <?php endwhile; endif; wp_reset_postdata(); ?> </div> </div> <?php } } endif; add_action('newsup_action_footer_missed', 'newsup_footer_missed'); if (!function_exists('newsup_footer_copyright')) : /** * Footer Copyright * * @since Newsup * */ function newsup_footer_copyright() { ?> <div class="container-fluid"> <div class="row"> <?php $newsup_enable_footer_menu = esc_attr(get_theme_mod('newsup_enable_footer_menu',true)); $enable_footer_menu = $newsup_enable_footer_menu == true ? 'col-md-6 text-xs' : 'col-md-12 text-xs text-center' ; ?> <div class="<?php echo $enable_footer_menu;?> "> <p> <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'newsup' ) ); ?>"> <?php /* translators: placeholder replaced with string */ printf( esc_html__( 'Proudly powered by %s', 'newsup' ), 'WordPress' ); ?> </a> <span class="sep"> | </span> <?php /* translators: placeholder replaced with string */ printf( esc_html__( 'Theme: %1$s by %2$s.', 'newsup' ), 'Newsup', '<a href="' . esc_url( __( 'https://themeansar.com/', 'newsup' ) ) . '" rel="designer">Themeansar</a>' ); ?> </p> </div> <?php if($newsup_enable_footer_menu == true){ ?> <div class="col-md-6 text-md-right text-xs"> <?php wp_nav_menu( array( 'theme_location' => 'footer', 'container' => 'nav-collapse collapse navbar-inverse-collapse', 'menu_class' => 'info-right', 'fallback_cb' => 'newsup_fallback_page_menu', 'walker' => new newsup_nav_walker() ) ); ?> </div> <?php } ?> </div> </div> </div> <?php } endif; add_action('newsup_action_footer_copyright', 'newsup_footer_copyright'); if (!function_exists('newsup_footer_widget_area')) : /** * Footer Widget Area * * @since Newsup * */ function newsup_footer_widget_area() { ?> <!--Start mg-footer-widget-area--> <?php if ( is_active_sidebar( 'footer_widget_area' ) ) { ?> <div class="mg-footer-widget-area"> <div class="container-fluid"> <div class="row"> <?php dynamic_sidebar( 'footer_widget_area' ); ?> </div> <!--/row--> </div> <!--/container--> </div> <?php } ?> <!--End mg-footer-widget-area--> <?php } endif; add_action('newsup_action_footer_widget_area', 'newsup_footer_widget_area'); if (!function_exists('newsup_footer_bottom_area')) : /** * Footer Bottom Area * * @since Newsup * */ function newsup_footer_bottom_area() { ?> <!--Start mg-footer-widget-area--> <div class="mg-footer-bottom-area"> <div class="container-fluid"> <?php if ( is_active_sidebar( 'footer_widget_area' ) ) { ?> <div class="divide-line"></div> <?php } ?> <div class="row align-items-center"> <!--col-md-4--> <div class="col-md-6"> <div class="site-logo"> <?php if(get_theme_mod('custom_logo') !== ""){ the_custom_logo(); } ?> </div> <?php if (display_header_text()) : ?> <div class="site-branding-text"> <p class="site-title-footer"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php echo esc_html(get_bloginfo( 'name' )); ?></a></p> <p class="site-description-footer"><?php echo esc_html(get_bloginfo( 'description' )); ?></p> </div> <?php endif; ?> </div> <div class="col-md-6 text-right text-xs"> <ul class="mg-social"> <?php do_action('newsup_action_footer_social_icon'); ?> </ul> </div> </div> <!--/row--> </div> <!--/container--> </div> <!--End mg-footer-widget-area--> <?php } endif; add_action('newsup_action_footer_bottom_area', 'newsup_footer_bottom_area');