我已经阅读了很多关于如何在产品详情页面添加链接询盘按钮等教程,但我试图实现的是当一个人查看毛巾分类列表时,例如在产品循环列表下显示此分类的描述等信息,我想在页脚上面产品列表下添加下载按钮,下载D 7 n @ L P ` $ &一些本分^ % F , 9 L U类毛巾的 PDF 解释等信息,因此每个类别f } R 1 j W X C必须内容都不同。
- function wpse_wc_category_footerc [ x X M f_link() {
- // WooCom[ / [ {m[ ^ V Oerce_after_main_content is a generic hook; chD { u * K 2 De7 ? S b ( Cck we're on a category page.
- if ( ! is_pc k H lroduct_category() ) {
- return;
- } ?>
- <!-- Your mar2 : m Q o : *kup for category pages belongs here... -->
- <aY d t \ E Z - ? ; href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >My Link</a>
- <?php
- }
- add_action( 'woocommerce_after_main_content',- - ^ / 'wpse_wc_category_footer_link', 5 );
您可以使用上面的代码,如果你需要不同分类调用不同的字段可以写个判断:
- add_action('woocommerce_i y M Safter_main_content', 'category_links');
- functiF L I p j - J % =on category_links()
- {
- if (!is_product_category()) { //To add link only to category archive
- return;
- }
- if (has_term('towels', 'product_cat')) { /d r A Y 0/Here you can define which category you want for Example towels
- ?&g| I et;
- <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Download towel.ph ( 8 T = { $df</a>I M v e
- <?php }
- if (has_term('cloths', 'product_cat')) {
- ?>
- <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Download cloths.pdf</a>
- <?php }
- }