Guest User

Untitled

a guest
Dec 11th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. remove_action('woocommerce_shop_loop_item_title','woocommerce_template_loop_product_title',10);
  2. add_action('woocommerce_shop_loop_item_title','fun',10);
  3. function fun()
  4. {
  5.  
  6. echo 'custom_field_value';
  7.  
  8. }
  9.  
  10. add_filter( 'woocommerce_page_title', function() {
  11. echo 'custom_field_value';
  12. } );
Add Comment
Please, Sign In to add comment