Disabling the RSS feed in WP Job Manager
-
Please I would like to disable the RSS feed in WP Job Manager.
I copied the below code into my site’s function.php and still got no solution.
add_filter( 'job_manager_job_filters_showing_jobs_links', 'custom_job_manager_job_filters_showing_jobs_links' ); function custom_job_manager_job_filters_showing_jobs_links( $links ) { unset( $links['rss_link'] ); return $links; }
After inserting the code into the function.php page, I checked the RSS feed (my-site-domain.com/feed) to see if the code worked, but instead of seeing a message like this – No feed is available, the RSS field is still visible.
Please assist me.Thank you.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Disabling the RSS feed in WP Job Manager’ is closed to new replies.