Changes between Initial Version and Version 2 of Ticket #49911
- Timestamp:
- 04/15/2020 07:33:57 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #49911
-
Property
Version
changed from
5.4
to -
Property
Component
changed from
Database
toQuery
-
Property
Version
changed from
-
Ticket #49911 – Description
initial v2 1 1 When calling WP_Query($arguments)::get_posts() like: 2 2 {{{ 3 3 $arguments = [ 4 4 'category__in' = ['7','31','704'], … … 7 7 'nopaging' => true 8 8 ]; 9 9 }}} 10 10 704 is the category for posts and 7, 31 for pages. The following query will be produced: 11 11