Change Image depending on page path
If you are dealing with a category page, you would simply use conditional tags, as suggested by @milo: if ( is_category( ‘cat-1’ ) ) { $url=”my-background-image-url-1.ext”; } else if ( is_category( ‘cat-2’ ) ) { $url=”my-background-image-url-2.ext”; } remember, you could pass in a category slug as well as a category name or an array containing … Read more