taxonomy and term function
-
I’ve been trying out for hours now, and I’m getting frustrated!
I want to change my css according to what custom taxonomy my page shows, this is my code so far:
`<?php
function my_enqueue_scripts() {
wp_enqueue_style( ‘style’, get_stylesheet_uri(), ”, ‘1.0’, ‘screen’ );
}
add_action( ‘wp_enqueue_scripts’, ‘my_enqueue_scripts’ );function change_stylesheet_uri( $stylesheet_uri, $stylesheet_dir_uri ) {
// see in_category for examples at https://codex.www.ads-software.com/Conditional_Tags
if ( taxonomy_exists( ‘product_categories’, ‘grunnmur’ ) )
return $stylesheet_dir_uri .’/grunn.css’;elseif ( taxonomy_exists( ‘product_categories’, ‘gulv’ ) )
return $stylesheet_dir_uri .’/gulv.css’;else
return $stylesheet_dir_uri . ‘/style.css’; // our default stylesheet}
add_filter( ‘stylesheet_uri’, ‘change_stylesheet_uri’, 10, 2 );?>’
And this works as it uses the custom css /grunn.css for product_categories, but /style.css for my other pages. But I want it to use /grunn.css for the product_categories ID/-or term which in this case is ‘grunnmur’ because I want ‘gulv’ to use another color (hence another css-file) as of now ‘gulv’ uses /grunn.css aswell.
- The topic ‘taxonomy and term function’ is closed to new replies.