I am trying to use the Category Images Plugin to show images with my Custom Taxonomy (Region) categories/terms. Here is the code I have so far in a page-example.php that lists all the categories/terms with their descriptions:

$siteurl = home_url("https://wordpress.stackexchange.com/");
$tax = 'region';  // slug of taxonomy

$terms = get_terms($tax);
foreach ($terms as $term) {
    $slug = $term->slug;
    $description = $term->description;
    $link = "<a href="https://wordpress.stackexchange.com/questions/176555/$siteurl?$tax=$slug" ><h1> $term->name </h1></a>";

    echo $link;
    echo '<p>' . $description . '</p>';
}

The documentation for the Category Images Plugin says “Use [the function] to get the url and put it in any img tag in category or taxonomy template.

Is it possible to get the image urls in my existing code even though it’s a regular page and not a category or taxonomy template file?

Any help or direction would be much appreciated as I’m not sure where to even start.

1 Answer
1

Untested, but something like this should work.

$siteurl = home_url("https://wordpress.stackexchange.com/");
$tax = 'region';  // slug of taxonomy
$terms = get_terms($tax);
foreach ($terms as $term) {
    $id = $term->term_id;
    $slug = $term->slug;
    $description = $term->description;
    $image_url = z_taxonomy_image_url( $id, NULL, TRUE );
    $link = "<a href="https://wordpress.stackexchange.com/questions/176555/$siteurl?$tax=$slug" ><h1> $term->name </h1></a>";

    echo $link;
    echo '<p>' . $description . '</p>';
    echo '<img src="' . $image_url . '">';
}

2nd argument of z_taxonomy_image_url() is image size and 3rd argument is for returning placeholder image.

Leave a Reply

Your email address will not be published. Required fields are marked *