badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Problems creating custom page with custom right sidebar

#23894

Hi shawnhoffman,

Yes create a sidebar_right_page.php on the theme folder of your child theme. Its great. Then after doing it you change the template name
e.g:-

<?php
/**
 * Template Name: Contact Page Template right
 *
 * Displays the contact page template right.
 *
 * @package Theme Horse
 * @subpackage Attitude
 * @since Attitude 1.0
 */
?>
<?php get_header();
if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar( 'attitude_right_page_sidebar' ) ):
	endif;
get_footer(); ?>

After doing it your template file is created. Select this page template (Contact Page Template right) from pages and now your widgets is called.

Thank you!