• berteh

    (@berteh)


    Hello,

    Thank your very much for this great plugin. It works nice on single blog and blogs network… until I run “WordPress MU Domain Mapping” plugin to map some of the blogs in the network to a different URL.

    Taxonomy Images of the mapped blogs are then not mapped… which is an issue.

    I get the images in the “usual” way I think (apply filter taxonomy-images-get-the-terms, and then wp_get_attachment_image)… but the resulting url is one that refers to the blog network and not the mapped blog url.

    $terms = apply_filters( 'taxonomy-images-get-the-terms', '', array(
       'taxonomy'     => $taxonomy,
       'post_id' => $id,
       'having_images' => !$include_text_terms
    ) );			
    
    if ( !empty( $terms ) ) {
    	foreach ( $terms as $term ) {
    		if (!empty($term->image_id))
    			$out_images[] = '<li class="taxonomy-image taxo-'.$taxonomy.'"><a href="' . esc_url( get_term_link( $term, $taxonomy ) ) . '" title="'.$term->name.' ('.$label.')">' . wp_get_attachment_image( $term->image_id, 'detail' ) . '</a></li>';
    		elseif ($include_text_terms) {
    			$out_texts[] = '<a href="' .get_term_link($term->slug, $taxonomy) .'" title="'.$term->name.' ('.$label.')">'.$term->name.'</a>';
    		}
    	}
    }

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

  • The topic ‘taxonomy-images not compatible with domain mapping plugin?’ is closed to new replies.