So, here’s what I did:
Created a bunch of albums, one for each year- in this particular site.
Example: https://img43.imageshack.us/img43/1856/sortorder.png
In each I’ll a new Gallery for each item to be filed under that year.
Installed Breadcrumbs NavXT 4.0.1
In page.php for my theme, I placed the code for the breadcrumbs so that it would be active only on pages, and not during posts.
The real reason I did that was I only wanted it for the Galleries, and I wanted it right above the image browser, and it wasn’t working when I added it to view/imagebrowser.php directly. (It was adding an extra ‘home’ link every time the image was advanced, since I am using the [X] don’t refresh the page for the next image option.)
<?php include (TEMPLATEPATH . ‘/postTop.php’); ?>
<!– h2 class=”single-title”><?php // the_title(); ?></h2–>
<div class=”breadcrumbs”>
<!– Added from here –>
<?php if(function_exists(‘bcn_display’)){ bcn_display(); }?>
</div>
<!– to here for Breadcrumbs only on pages, not post titles–>
<?php include (TEMPLATEPATH . ‘/postMiddle.php’); ?>
<?php the_content(); ?>
<!– Metadata – tags, categories, comments and so on… –>
<p class=”postmetadata”>
<?php edit_post_link(__(‘Edit’, ‘vSlider’),”,’??? ‘); ?>
The original line is the h2 class”single-title” php… where I commented out both the html and php and just left it there. I added the <div class”breadcrumbs”… in place of the post title.
Now if I can figure out how to edit the CSS that Breadcrumbs NavXT generates, then I can increase the font size again, so it’s like the page title was.
The reason I didn’t just use the same style as the page-title is because I want the navigation separator ‘->’ to be a different color and I can’t figure out how to do it anyway, but Breadcrumbs NavXT does it for me. So..
Here’s what it looks like:
https://img171.imageshack.us/img171/2939/nggnavexample.png
The page for each year just has the short code for the particular album for that year:
[album id=34 template=extend] and each of these pages is a sub page off the main photo gallery page. So the whole thing is available from one link to drill down into.
Any gallery that is added to that for the year will just show up when that page is selected. The year page can always be selected again just above in the Breadcrumb trail, or the main photo gallery page on level higher, and if they’re done- just select the home, or other page/site selection from either the top or side menus.
Now … if there were an Aperture (Apple) uploader I’d be set.