Search code examples
wordpressservicesidebar

wordpress custom sidebar in services pages


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.


Solution

  • Here is the recommended use of this function:

    <?php dynamic_sidebar( 'your-sidebar-id-name' ); ?>