Sacconi69

// CANCELLA PREZZI 2- STEP 1

Oct 31st, 2024
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // CANCELLA PREZZI 2- STEP 1
  2.  
  3. function reset_price_fields( $hook ) {
  4. if ( 'edit.php' != $hook ) {
  5. return;
  6. }
  7. wp_enqueue_script( 'ajax-script', get_template_directory_uri . '/js/cancella_prezzi_2.js/', array(), '1.0' );
  8.  
  9. wp_localize_script(
  10. 'ajax-script',
  11. 'my_ajax_obj',
  12. array(
  13. 'ajax_url' => admin_url( 'admin-ajax.php' ),
  14. 'nonce' => $title_nonce,
  15. )
  16. );
  17.  
  18.  
  19. }
  20. add_action( 'admin_enqueue_scripts', 'reset_price_fields' );
  21.  
Advertisement
Add Comment
Please, Sign In to add comment