Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created November 27, 2020 18:07
Show Gist options
  • Select an option

  • Save yousufansa/6e6eff7d6dcb807d5e9c09e9056de348 to your computer and use it in GitHub Desktop.

Select an option

Save yousufansa/6e6eff7d6dcb807d5e9c09e9056de348 to your computer and use it in GitHub Desktop.
Jobhunt - Remove Catalog Ordering Dropdown From Job Listings Page
if( ! function_exists( 'jh_child_remove_catalog_ordering' ) ) {
function jh_child_remove_catalog_ordering() {
remove_action( 'jobhunt_before_job_listing_loop', 'jobhunt_wpjm_job_catalog_ordering', 40 );
}
}
add_action( 'jobhunt_before_job_listing_loop', 'jh_child_remove_catalog_ordering', 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment