![]() 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/confenda.com/wp-content/themes/beevent/ |
<?php /** * The template for showing all page * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package WordPress * @subpackage beevent * @since beevent 4.1 */ get_header(); ?> <?php while ( have_posts() ) : the_post(); ?> <!-- Banners --> <?php beevent_page_title(); ?> <!-- /Banners --> <div class="inner_pages"> <div class="container"> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="content_pages"> <?php the_content() ?> </div> </article> <?php comments_template(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . esc_html( 'Pages:', 'beevent' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', ) ); ?> <?php edit_post_link( __( 'Edit', 'beevent' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer><!-- .entry-footer -->' ); ?> </div> </div> <?php endwhile; wp_reset_query(); ?> <?php get_footer();