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
At the moment, when supplying tags to get_artciles in wordpress_api.py these tags are either or.
get_artciles
wordpress_api.py
Such that when using tags=[1,2,3], all articles with either tag 1,2 or 3 will be fetched.
tags=[1,2,3]
1
2
3
We should add functionality to fetch only articles that have all given tags.
For example a with_tags=[1,2,3] such that only articles that have all tags will be returned.
with_tags=[1,2,3]
The text was updated successfully, but these errors were encountered:
This should be pretty easy to achieve wtih https://stackoverflow.com/a/44666295/2454059. But I wonder if we need this functionality at this point
Sorry, something went wrong.
No branches or pull requests
At the moment, when supplying tags to
get_artciles
inwordpress_api.py
these tags are either or.Such that when using
tags=[1,2,3]
, all articles with either tag1
,2
or3
will be fetched.We should add functionality to fetch only articles that have all given tags.
For example a
with_tags=[1,2,3]
such that only articles that have all tags will be returned.The text was updated successfully, but these errors were encountered: