Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: New custom page – how to make it look lige the other pages?


modemlooper
Moderator

@modemlooper

You need to do what Xevo said. upload this page to your wp-content/themes/whatever theme

Add a new page in the WP admin. When creating page in the right side bar choose rpx page as page template.

<?php
/*
Template Name: rpx page
*/
?>

<?php get_header() ?>

<div id="content">
<div class="padder">

PUT YOUR CUSTOM CODE HERE

</div><!-- .padder -->
</div><!-- #content -->

<?php locate_template( array( 'sidebar.php' ), true ) ?>

<?php get_footer(); ?>

Skip to toolbar