Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imath/wp-query-block-attributes
Introduce a new WP_Query parameter to run block attributes queries.
https://github.com/imath/wp-query-block-attributes
wordpress-plugin
Last synced: 24 days ago
JSON representation
Introduce a new WP_Query parameter to run block attributes queries.
- Host: GitHub
- URL: https://github.com/imath/wp-query-block-attributes
- Owner: imath
- Created: 2020-02-02T20:34:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T00:22:30.000Z (3 months ago)
- Last Synced: 2024-08-08T02:47:13.892Z (3 months ago)
- Topics: wordpress-plugin
- Language: PHP
- Size: 714 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WP Query Block Attributes
Introduce a new WP_Query parameter to run block attributes queries. Here's an example of use:
```php
$q = new WP_Query();
$items = $q->query(
array(
'post_type' => 'post',
array(
'block_attribute_query' => array(
array(
'block' => 'wpqba/block', // Name of the WP Block.
'attribute' => 'wpqbaAttributeOne', // Name of the WP Block attribute.
'value' => 'One', // Value to find.
'type' => 'string', // Type for the value (string or integer).
),
),
,)
)
);
```