You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The job feed https://www.example.com/?feed=job_feed created by this plug uses the default Wordpress do_feed_rss2.
We want to add a additional action to the do_feed_rss2 action, but this is not possible, because in wp-job-manager/includes/class-wp-job-manager-post-types.php the function do_feed_rss2(false) is called directly.
To Reproduce
Steps to reproduce the behavior:
Add a do_action behavior to do_feed_rss2
Call the /?feed=job_feed page and you will notice your custom action is not activated.
Expected behavior
In "wp-job-manager/includes/class-wp-job-manager-post-types.php the do_feed_rss2(false) should be replaced with do_action('do_feed_rss2');.
This way customers can add extra actions to the feed.
The text was updated successfully, but these errors were encountered:
Describe the bug
The job feed https://www.example.com/?feed=job_feed created by this plug uses the default Wordpress
do_feed_rss2
.We want to add a additional action to the do_feed_rss2 action, but this is not possible, because in
wp-job-manager/includes/class-wp-job-manager-post-types.php
the functiondo_feed_rss2(false)
is called directly.To Reproduce
Steps to reproduce the behavior:
Expected behavior
In "
wp-job-manager/includes/class-wp-job-manager-post-types.php
thedo_feed_rss2(false)
should be replaced withdo_action('do_feed_rss2');
.This way customers can add extra actions to the feed.
The text was updated successfully, but these errors were encountered: