I resolved my WP 3.2 / 3.2.1 - Arras 1.5.1.1 issue.
And I'm not totally sure whats right or wrong. Prior to 3.2, I always had my home page set as a static page, and I would get the slideshow. After 3.2 update, this would not happen, only on the Posts page would it come up on my live site or clean 3.2 install.
So I actually looked at the code this evening and find Arras has always been limiting the slideshow to the Posts page, but it seems, AT LEAST FOR ME, that WP 3.1 wasn't working as it should. I never should have gotten the slideshow with a static page.
Tag is_home() returns true only for Posts page.
Tag is_front_page returns true for the assigned front page.
So the code in Arras, in arras/library/slideshow.php is
function arras_add_slideshow() {
global $post_blacklist, $paged;
if ( !is_home() || $paged ) return false;
So if you want the assigned static Front page, just change !is_home() to is_front_page()
Now, its not clear to me if the slideshow was intended to be post page and/or static home page. If something has changed in WP 3.2 that breaks that possible intention it should be fixed.
If not, I think a theme option of Show Slideshow on Front Page should be added for those of us who like it on our home page.
Last edited by kberrien (2011-07-23 22:53:34)