We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the msm_sitemap_skip_post filter was added the decision was made not to pass the post_id. The logic at the time was:
msm_sitemap_skip_post
post_id
This filter is called in the loop, so post data is not passed through the filter.
The current best practice is to pass the Post ID, which will make programmatically skipping posts much easier.
The text was updated successfully, but these errors were encountered:
Add Post ID to msm_sitmap_skip_posts
54e3efc
Adds the post ID to msm_sitmap_skip_posts This is a backwards incompatible change, as it adds a second argument to the filter Fixes #183
Successfully merging a pull request may close this issue.
When the
msm_sitemap_skip_post
filter was added the decision was made not to pass thepost_id
. The logic at the time was:The current best practice is to pass the Post ID, which will make programmatically skipping posts much easier.
The text was updated successfully, but these errors were encountered: