Quantcast
Channel: Topic Tag: plugin | WordPress.org
Viewing all articles
Browse latest Browse all 26892

markyeoj on "[Plugin: Categories Images] List the Custom Taxonomy with with image"

$
0
0

yes.. I already changed that.. looks like the problem is with the custom post type UI plugin.. even I use a simple

<?php

$taxonomy = 'recipecategory';
$tax_terms = get_terms($taxonomy);
?>
<ul>
<?php
foreach ($tax_terms as $tax_term) {
echo '<li>' . '<a href="' . esc_attr(get_term_link($tax_term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $tax_term->name ) . '" ' . '>' . $tax_term->name.'</a></li>';
}
?>
</ul>

still not working.


Viewing all articles
Browse latest Browse all 26892

Trending Articles