Sacconi69

function reset_price_fields

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