April 9, 2015 at 5:16 am
#23894
Theme Horse Support Team
Keymaster
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!