Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
themes
/
vantage
/
Editing: home-panels.php
<?php /** * The template for displaying the home page panel. Requires SiteOrigin page builder plugin. * * Template Name: Page Builder Home * * @since vantage 1.0 * @see http://siteorigin.com/page-builder/ * * @license GPL 2.0 */ get_header(); ?> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <div class="entry-content"> <?php if ( is_page() ) { the_post(); the_content(); } elseif ( function_exists( 'siteorigin_panels_render' ) ) { echo siteorigin_panels_render( 'home' ); } else { echo siteorigin_panels_lite_home_render(); } ?> </div> </div><!-- #content .site-content --> </div><!-- #primary .content-area --> <?php get_footer(); ?>
Save
Cancel