• When combined with the having_images = false argument, the child_of argument does not appear to work. Here is my code.

    $args=array(
      'taxonomy' => 'custom_tax',
      'having_images' => false,
      'term_args' => array(
      	  'class' => 'alignleft',
    	  'orderby' => 'name',
    	  'order' => 'ASC',
    	  'child_of' => 150,
    	  'hierarchical' => 1,
    	  ),
       );

    http://wordpress.org/extend/plugins/taxonomy-images/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bgajus

    (@bgajus)

    But the parent argument does work for me and that’s all I need.

    Thread Starter bgajus

    (@bgajus)

    Should add also that the ‘class’ => ‘alignleft’ argument does not appear to work either. I may have it formatted incorrectly though.

    Tell me about it!

    Michael – if you’re out there I’ll buy you a virtual beer – just please fix the child_of !

    stand down – managed to get ti working with:

    ‘parent’ => $current_term->term_id,

    instead of:

    child_of => $current_term->term_id,

    That’s 2 days I’ll never get back!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Taxonomy Images] Doesn't adhere to 'child_of' argument’ is closed to new replies.