Guest User

Untitled

a guest
Jan 21st, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. name: artysci
  2. label: Artyści
  3. singular_label: Artysta
  4. description: ""
  5. public: true
  6. publicly_queryable: true
  7. hierarchical: true
  8. show_ui: true
  9. show_in_menu: true
  10. show_in_nav_menus: true
  11. query_var: true
  12. query_var_slug: ""
  13. rewrite: true
  14. rewrite_slug: ""
  15. rewrite_withfront: true
  16. rewrite_hierarchical: true
  17. show_admin_column: true
  18. show_in_rest: true
  19. show_in_quick_edit: ""
  20. rest_base: ""
  21. rest_controller_class: ""
  22. meta_box_cb: ""
  23.  
  24. add_action( 'woocommerce_before_shop_loop_item_title', 'add_artist_term');
  25. function add_artist_term() {
  26. $terms = wp_get_post_terms(get_the_ID(), 'artysci');
  27. if (!is_wp_error($terms) && !empty($terms)) { ?>
  28. <div class="artist-term-title"><a href="<?php echo esc_url(get_term_link($terms[0])); ?>"><?php echo esc_html($terms[0]->name); ?></a></div>
  29. <?php }
  30. }
Add Comment
Please, Sign In to add comment