Thanks for the response Nick. I read the post, it seemed very clear and made sense to me. I was just testing the logic, perhaps my PHP is not correct, but I didn't work for me in my application. Can you please take a look at the code and let me know if I am doing anything wrong.
if (is_page() && is_category('photo')) {
if ( function_exists('show_skitter')) add_action( 'genesis_after_post_content', 'show_skitter');
}
My site
http://www.missionplacehomes.com is just made up of several pages. One page I put under the category photo but it didn't work. To troubleshoot I then tried to simplify it to:
if (is_page() ) {
if ( function_exists('show_skitter')) add_action( 'genesis_after_post_content', 'show_skitter');
}
And this had no effect either. I am obviously doing something wrong, but its not obvious to me what it is. Please let me know if you know. Thanks