Advertisement
oscarviedma

Función campo dinámico duración

Mar 25th, 2021
590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // Mostrar campos personalizados duracion
  2. function ov_mostrar_campo_duracion_woo() {
  3.  
  4. global $product;
  5.  
  6. // reemplaza el nombre del campo personalizado por el tuyo
  7. $duracion = get_post_meta( $product->id, 'duracion', true );
  8.  
  9. $duracion = str_replace( '_', ' ', $duracion );
  10.  
  11. if ( ! empty( $duracion ) ) {
  12. echo '<div class="meta-cf"><i class="far fa-clock"></i>' . ucwords( $duracion ) . '</div>';
  13. }
  14.  
  15. }
  16. add_action( 'woocommerce_after_shop_loop_item_title', 'ov_mostrar_campo_duracion_woo', 9 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement