Try this if
statement instead:
if ( is_category() && ( is_category( 59 ) || cat_is_ancestor_of( 59, get_queried_object_id() ) ) )
Update: To work for single posts:
if ( is_single() && $terms = get_the_category( get_queried_object_id() ) ) {
foreach ( $terms as $term ) {
if ( $term->term_id == 59 || cat_is_ancestor_of( 59, $term->term_id ) ) : ?>
<link rel="stylesheet" href="https://wordpress.stackexchange.com/questions/71830/<?php bloginfo("template_url'); ?>/products.css" type="text/css" media="screen" />
<?php
break;
endif;
}
}
Related Posts:
- What is the condition to check if we are in admin or frontend?
- Actions, functions and conditionals
- if (is_page(**PAGE ID**)) not working
- is_home , is_front_page not working
- What is the correct method for determining ‘is_front_page’ when using filters such as ‘pre_get_posts’ and ‘posts_where’?
- how to check if front page is set to show a static page
- Way to check if we are in Theme Customizer mode? [duplicate]
- How can we use conditional tags in plugins?
- Conditional tag for all categories of a custom post type
- Possible to use conditionals within add_feed() callback?
- Blog Posts vs Static Page (conditional statements)
- Adding Controls to Theme Customizer If Certain Page Template is Active
- Problem with “conditional tag”: if empty
- is_singular() equivalent for backend
- Make specific tag visible only to logged in users in front-end
- How can I achieve something like has_post_format( ‘standard’ )?
- Post tags show outside loop?
- WordPress conditionals not working
- wp_head hook by page ID [closed]
- Limit Contact Form 7 hook to specific form [closed]
- Conditional tags inside a class
- Display Footer Shortcode Different for Logged In Users
- If (category / tag checked) then (display header2php)
- If Parent or Current Page Is, Then Statement?
- Identify a Woocommerce page by WordPress conditional tags
- is_page conditional question
- Trouble with parent and child conditional tag to show content
- A simple method for disabling WPML language switcher when meeting specific circumstances [closed]
- Display a div only in some author’s single posts
- Conditional check for embedded video in the_content
- Conditional IF statement not returning true even though echo of $user->province is correct
- is_front_page not working at all in any of the themes .php files
- is singular and is home not working
- add styles if custom header was included
- PHP if statement printing the if parameters
- Why is this is_page conditional not working?
- If page displays posts conditional
- Conditional tags not working
- How to check with is_page if 404.php is loaded?
- I need use is_single in functions.php
- do code if current url = value
- Why might conditionals not work on a page?
- Conditional display faults
- Conditionals: What is wrong with my if/else statements? [closed]
- Only on single post page
- Is there any way to assign stylesheets to whole sets of pages using is_page( )
- is_home() returns true while it shouldn’t
- Conditional tags help (if none, don’t display anything)
- Filter for the Custom Post List Page
- Gravity Forms, multiple conditions in shortcode
- Can this code be concatenated?
- Conditonal tag or work around to identify page number of pagnation
- Conditional: current user updated post in the last X days
- How can I get $pagenow equals to the Home Page or specific page on my site?
- page single conditional
- Three variables on conditional tags
- Is it possible to If statement “article already appears on page”?
- How to use the conditional homepage tag
- Which is the right order of the conditional tags on pages?
- Hide breadcrumbs on specific pages
- Pre Get Posts – Difference between conditional() and $query->conditional()?
- If less than IE9 [closed]
- Cannot retrieve active members only
- Else statement not triggering after a failed if statement
- Custom Function for Portfolio Archive Template With Conditonal Tag
- Conditional Custom Image Header
- Will multiple conditionals slow down page load?
- conditional statement for profile pages
- WP newbie: using else/if statements to show multiple headers. bonks
- Conditional tag-like function to tell if post is in trash?
- Conditional Tags and Echo HTML / divs or CSS and Display: none?
- Automatically insert H2 on h2 tags on WordPress post
- Get value in TCPDF
- Add an identifier to a set of pages to access using a conditional tag
- How to target a search result page?
- if is NOT custom post type OR is NOT page combination [closed]
- What changes are needed for this conditional code to work on deeper levels?
- How to detect if bbPress forum index
- Displaying message if no posts in tag
- WordPress Conditionals Giving Me A Headache
- Conditional statements in wordpress themes
- My Conditional Tags not Working
- Is this a bad approach to add conditional comments to wp_head?
- Help with if else statement for separating content from image attachment
- Hide page header on both index and author pages [closed]
- How to check if the current page’s parent is one of 2 different ID’s
- Showing code only on Front Page “Posts Page”
- Run a php function if a predefined page is visited
- Targeting all pages except top level pages
- nested conditional to check for feature image and custom field?
- is_archive for custom tax archive page?
- How to apply style to the body tag of a particular page?
- Custom Headers on Blog Posts Page
- Conditional statement with three condition
- if is_page(‘slug’)
- How do I combine these two conditionals? [closed]
- problem with not displaying content on selected pages
- hide block of code from showing on certain pages
- Delete backgound for ID with conditional if statement
- Quick Conditional Tag Question if elseif [closed]