Hi,
First off, thanks to Ian and Chris for their hard work on this framework, having a lot of fun making a theme for a new project of mine - which is nearly finished except for a few lil bits:
I would like to filter a function but only on the home indexing page and paginations of such and also on the single page.
I have tried the following using Wordpresses' conditionals in functions.php with little effect (the filter function does work if I remove the if statements around it however).
if is_home() or is_single() {
add_filter('etc', 'etc');
}
Any pointers? Cheers.