Created
November 27, 2020 18:07
-
-
Save yousufansa/6e6eff7d6dcb807d5e9c09e9056de348 to your computer and use it in GitHub Desktop.
Jobhunt - Remove Catalog Ordering Dropdown From Job Listings Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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