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

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -