use a different sidebar on the single.php of wordpress -
i want use different sidebar specific post category in wordpress
i using plugin called simple page sidebars can register new sidebars , assign them pages.. need use such sidebar (which can configure in widget area) in single.php template if specific category selected.
any hint? :)
try open single.php and/or page.php , find following code:
<?php get_sidebar(); ?> replace above code this:
<?php $sidebar = get_post_meta($post->id, "sidebar", true); get_sidebar($sidebar); ?>
Comments
Post a Comment