| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "learnpress/list-courses", |
| 5 |
"title": "Course Listing", |
| 6 |
"category": "learnpress-category", |
| 7 |
"description": "Course Listing block", |
| 8 |
"textdomain": "learnpress", |
| 9 |
"keywords": [ "listing course", "learnpress", "query loop" ], |
| 10 |
"usesContext": [], |
| 11 |
"attributes": { |
| 12 |
"courseQuery": { |
| 13 |
"type": "object", |
| 14 |
"default": { |
| 15 |
"limit": 10, |
| 16 |
"order_by": "post_date", |
| 17 |
"related": false, |
| 18 |
"pagination": false, |
| 19 |
"pagination_type": "number", |
| 20 |
"tag_id": "", |
| 21 |
"term_id": "", |
| 22 |
"load_ajax": false |
| 23 |
} |
| 24 |
} |
| 25 |
}, |
| 26 |
"providesContext": { |
| 27 |
"lpCourseQuery": "courseQuery" |
| 28 |
}, |
| 29 |
"supports": { |
| 30 |
"html": false, |
| 31 |
"align": [ "wide", "full" ] |
| 32 |
} |
| 33 |
} |
| 34 |
|