Sindbad~EG File Manager
<?php
/*
* Template Name: Landing Pages
*/
if (!defined('WPINC')) {
die;
}
?>
<?php //get_header('landing'); ?>
<?php get_header(); ?>
<!-- BEGIN #content -->
<section id="content" <?php nice_content_class( 'main-content full-width' ); ?> role="main">
<div class="landing-pages-wrapper">
<?php
/* remove auto p and br tag */
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
/* get original content from text editor */
$getContent = get_the_content();
/* search and replace html tags */
$searchReplaceArray = array(
'<html>' => '',
'<head>' => '',
'<body>' => '',
'</head>' => '',
'</body>' => '',
'</html>' => ''
);
$setContent = str_replace(
array_keys($searchReplaceArray),
array_values($searchReplaceArray),
$getContent
);
/* output before tab slider */
//echo $setContent;
the_content();
?>
</div>
<!-- END #content -->
</section>
<?php //get_footer('landing'); ?>
<?php get_footer(); ?>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists