Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <?php
  2.  
  3. #-----------------------------------------------------------------#
  4. # Remove "Salary" Field
  5. #-----------------------------------------------------------------#
  6.  
  7. function remove_default_salary_field() {
  8. remove_filters_with_method_name( 'submit_job_form_fields', 'frontend_job_salary_field', 10 );
  9. remove_filters_with_method_name( 'job_manager_job_listing_data_fields', 'admin_job_salary_field', 10 );
  10. }
  11. add_action( 'init', 'remove_default_salary_field' );
  12.  
  13. #-----------------------------------------------------------------#
  14. # Remove "Salary" Output
  15. #-----------------------------------------------------------------#
  16.  
  17. function remove_salary_output() {
  18. remove_filters_with_method_name( 'single_job_listing_meta_start', 'job_salary_meta', 10 );
  19. }
  20. add_action( 'init', 'remove_salary_output' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement