wordpress/php-fpm/wordpress_files/themes/origami/home-panels.php

18 lines
340 B
PHP
Raw Normal View History

2020-05-22 03:40:23 +02:00
<?php
/*
Template Name: Without Page Title
*/
get_header(); the_post();
?>
<div <?php post_class('post') ?>>
<div class="content">
<?php
if( is_page() ) the_content();
else if( function_exists('siteorigin_panels_render') ) echo siteorigin_panels_render('home');
?>
<div class="clear"></div>
</div>
</div>
<?php get_footer() ?>