Dashboard
PHP:
7.4.33
OS:
Linux
User:
vqweckd
/
/
home
/
vqweckd
/
www
/
wp-content
/
themes
/
Avada
📤 Upload
📝 New File
📁 New Folder
Close
Editing: blank.php
<?php /** * Template Name: Blank Page * A simple template for blank pages. * * @package Avada * @subpackage Templates */ ?> <?php // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } ?> <?php get_header(); ?> <section id="content" class="full-width"> <?php while ( have_posts() ) : ?> <?php the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php echo fusion_render_rich_snippets_for_pages(); // phpcs:ignore WordPress.Security.EscapeOutput ?> <?php avada_singular_featured_image(); ?> <div class="post-content"> <?php the_content(); ?> </div> </div> <?php endwhile; ?> </section> <?php get_footer(); ?>
Save
Cancel