最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

permalinks - Redirect to brand page after click on the brand logo

programmeradmin2浏览0评论

I've designed a product page. I've added a brand from the attribute with a logo.

However, when I click on the logo it is redirecting me to this link:

.../?taxonomy=pa_brands&term=midea

My expectation is to redirect to the following link:

...../brand/midea

How can I achieve this without any plugin? Thank you.

I've designed a product page. I've added a brand from the attribute with a logo.

However, when I click on the logo it is redirecting me to this link:

.../?taxonomy=pa_brands&term=midea

My expectation is to redirect to the following link:

...../brand/midea

How can I achieve this without any plugin? Thank you.

Share Improve this question asked Jan 24, 2022 at 13:33 MehediMehedi 1032 bronze badges 1
  • can you edit the question to include the code that implements this? It's not clear how you created this so it's difficult to know the exact steps to answer the question – Tom J Nowell Commented Jan 24, 2022 at 14:00
Add a comment  | 

1 Answer 1

Reset to default 0

just call the function

the_custom_logo();

and then on appearence choose your logo. if this option is not available in appearance, you need to add the theme support to functions.php

add_theme_support('custom-logo');

this redirectes to home page, if you need to redirect to a custom url you can use

<a href="<?= home_url() ?>/brand/midea"><img src="yourimage_path"></a>
发布评论

评论列表(0)

  1. 暂无评论