OwlCyberSecurity - MANAGER
Edit File: footer.php
<?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 Glowing Blog */ ?> </div> <?php if ( is_singular( 'post' ) ) { $cat_content_id = get_the_category( $post->ID )[0]->term_id; $args = array( 'cat' => $cat_content_id, 'posts_per_page' => 3, 'post__not_in' => array( $post->ID ), 'orderby' => 'date', ); $query = new WP_Query( $args ); if ( $query->have_posts() ) : $related_title = get_theme_mod( 'glowing_blog_related_posts_title', __( 'Related Posts', 'glowing-blog' ) ); ?> <div class="related-posts"> <?php if ( ! empty( $related_title ) ) : ?> <h2 class="related-title"><?php echo esc_html( $related_title ); ?></h2> <?php endif; ?> <div class="related-grid theme-archive-layout grid-layout grid-column-3"> <?php while ( $query->have_posts() ) : $query->the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="post-item post-grid"> <div class="post-item-image"> <a href="<?php the_permalink(); ?>"><?php glowing_blog_post_thumbnail(); ?></a> <div class="entry-cat"> <?php the_category( '', '', get_the_ID() ); ?> </div> </div> <div class="post-item-content"> <?php the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); ?> <ul class="entry-meta"> <li class="post-author"> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>"><i class="far fa-user"></i><?php echo esc_html( get_the_author() ); ?></a></li> <li class="post-date"><i class="far fa-calendar-alt"></i><?php echo esc_html( get_the_date() ); ?></li> <li class="read-time"> <i class="far fa-hourglass"></i> <?php echo glowing_blog_time_interval( get_the_content() ); echo esc_html__( ' min', 'glowing-blog' ); ?> </li> <li class="comment"> <i class="far fa-comment"></i> <?php echo absint( get_comments_number( get_the_ID() ) ); ?> </li> </ul> <div class="post-content"> <p><?php echo wp_kses_post( wp_trim_words( get_the_excerpt(), get_theme_mod( 'glowing_blog_related_excerpt_length', 15 ) ) ); ?></p> </div><!-- post-content --> </div> </div> </article> <?php endwhile; wp_reset_postdata(); ?> </div> </div> <?php endif; } if ( ! is_front_page() || is_home() ) { ?> </div> </div><!-- #content --> <?php if ( is_front_page() ) { require get_template_directory() . '/inc/frontpage-sections/popular-posts.php'; } } ?> <footer id="colophon" class="site-footer"> <?php if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) ) : ?> <div class="top-footer"> <div class="theme-wrapper"> <div class="top-footer-widgets"> <?php for ( $i = 1; $i <= 3; $i++ ) { ?> <div class="footer-widget"> <?php dynamic_sidebar( 'footer-' . $i ); ?> </div> <?php } ?> </div> </div> </div> <?php endif; ?> <?php $glowing_blog_search = array( '[the-year]', '[site-link]' ); $replace = array( date( 'Y' ), '<a href="' . esc_url( home_url( '/' ) ) . '">' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '</a>' ); $copyright_default = sprintf( esc_html_x( 'Copyright © %1$s %2$s', '1: Year, 2: Site Title with home URL', 'glowing-blog' ), '[the-year]', '[site-link]' ); $copyright_text = get_theme_mod( 'glowing_blog_copyright_text', $copyright_default ); $copyright_text = str_replace( $glowing_blog_search, $replace, $copyright_text ); $footer_social_class = has_nav_menu( 'social' ) ? '' : 'no-footer-social-menu'; ?> <div class="bottom-footer"> <div class="theme-wrapper"> <div class="bottom-footer-info <?php echo esc_attr( $footer_social_class ); ?>"> <div class="site-info"> <span> <?php echo wp_kses_post( $copyright_text ); ?> <?php echo sprintf( esc_html__( 'Theme: %1$s By %2$s.', 'glowing-blog' ), wp_get_theme()->get( 'Name' ), '<a href="' . wp_get_theme()->get( 'AuthorURI' ) . '">' . wp_get_theme()->get( 'Author' ) . '</a>' ); ?> </span> </div><!-- .site-info --> <div class="social-icons"> <?php if ( has_nav_menu( 'social' ) ) { wp_nav_menu( array( 'menu_class' => 'menu social-links', 'link_before' => '<span class="screen-reader-text">', 'link_after' => '</span>', 'theme_location' => 'social', ) ); } ?> </div> </div> </div> </div> </footer><!-- #colophon --> <?php if ( get_theme_mod( 'glowing_blog_enable_scroll_to_top', true ) === true ) : ?> <a href="#" id="scroll-to-top" class="glowing-blog-scroll-to-top"><i class="fas fa-chevron-up"></i></a> <?php endif; ?> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>