[Plugin: Category Meta plugin] How do you make an image also a link??
-
Hey guys,
im currently using this plug-in to give categories an associated image. Does anyone know how to make this image a link to the associated category?? For example, i have a category called Nike, and the image is the logo. On the nike child category pages i would like to use this image in the sidebar to allow users to click it and be linked back to the main nike page.
If anyone knows how to do this i would be extremely grateful. Thanks.
Here is the code im using which currently displays the image, but not as a link. It was adapted from another form post about this particular plug-in.
<?php
if(function_exists(‘get_terms_meta’)) {
$screen = get_terms_meta($thisCat, ‘logo’);
$screen = $screen[0];
} ?><img src=”<?php echo ($screen); ?>” />
- The topic ‘[Plugin: Category Meta plugin] How do you make an image also a link??’ is closed to new replies.