Punk Wheat wrote: I did go forward and copy the category php file, rename it with a category ID and stick it back in the theme, but I'm seeing no options.
You are not going to see options based on this. Moreover, options are controlled via a bunch of files that I have provided with the theme and under no circumstances should users mess with them (well, you can mess with them, but you will dig yourself into a bottomless pit that way).
Basically when you copy the files and create your own templates, in the files you will see this code block:
- Code: Select all
if ($suf_category_excerpt == 'list') {
get_template_part('layouts/layout-list');
}
else if ($suf_category_excerpt == 'tiles') {
suffusion_after_begin_content();
get_template_part('layouts/layout-tiles');
}
else if ($suf_category_excerpt == 'mosaic') {
//suffusion_after_begin_content();
get_template_part('layouts/layout-mosaic');
}
else {
suffusion_after_begin_content();
get_template_part('layouts/layout-blog');
}
You can then delete the segments that you don't want. E.g. If your site is set up with a blog layout, and all your categories are set up with a tile layout, and for one particular category "x" you want a list layout, modify category-x.php by changing the above code to simply have this:
- Code: Select all
get_template_part('layouts/layout-list');
You don't need to have any of the conditions or other code blocks there.
The new Custom Post Type Archive that I have provided in 4.2.0 beta goes partly towards addressing this requirement. However at this point I haven't added query building functionality to it. E.g. If I have a custom post type called "book", I can use this template to create a tiled layout of
all books, but I cannot create a tiled layout for
one genre specifically. That should come up soon after 4.2.0 goes live, though.