Manage content on multiple pages synchronysly?
To use a separate single post template for each category, you will need to add the following function in your functions.php: /** * Define a constant path to our single template folder */ define(SINGLE_PATH, TEMPLATEPATH . ‘/single’); /** * Filter the single_template with our custom function */ add_filter(‘single_template’, ‘my_single_template’); /** * Single template function which … Read more