I'm trying to the different sidebar for different services pages on my site. My theme was created from scratch by some guy.
single-services.php
<?php get_sidebar(); ?>
how can I do this.
CodePudding user response:
Here is the recommended use of this function:
<?php dynamic_sidebar( 'your-sidebar-id-name' ); ?>