Possible to show images on regular page (page-example.php)?
-
I’m wondering if it’s possible to show the images on a regular page?
I have the following code in a page-regions.php file, listing all the terms and descriptions of the “Region” taxonomy, but need to add the taxonomy images (from this plugin) now:$siteurl = home_url('/'); $tax = 'region'; // slug of taxonomy to list $terms = get_terms($tax); foreach ($terms as $term) { $slug = $term->slug; $description = $term->description; $link = "<a href='$siteurl?$tax=$slug' ><p> $term->name </p></a>"; echo $link; echo $description; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Possible to show images on regular page (page-example.php)?’ is closed to new replies.