Skip to content

Commit

Permalink
Bump to version 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwelcher committed Dec 5, 2024
1 parent 2d54e63 commit e6f7fe7
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 12 deletions.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Advanced Query Loop
* Description: Query loop block variations to create custom queries.
* Plugin URI: https://github.com/ryanwelcher/advanced-query-loop/
* Version: 3.2.0
* Version: 4.0.0
* Requires at least: 6.2
* Requires PHP: 7.4
* Author: Ryan Welcher
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "advanced-query-loop",
"version": "3.2.0",
"version": "4.0.0",
"description": "Query loop block variations to create custom queries.",
"main": "index.js",
"scripts": {
Expand Down
12 changes: 8 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Please use the either the [support](https://wordpress.org/support/plugin/advance

### Available Controls

#### Disable Pagination
#### Taxonomy queries

Improve the performance of the query by disabling pagination
Built complicated taxonomy queries!

#### Multiple post types

Expand All @@ -26,7 +26,7 @@ Set the number of items you want to display (up to 50).

#### Include Posts

Choose the posts you want to display manually.
Choose the posts you want to display manually or only the children of the current content.

#### Exclude current post

Expand All @@ -46,7 +46,7 @@ Generate complicated post meta queries using an interface that allows you to cre

#### Date Query

Query items before a date, after a date or between two dates or choose to show the post from the last 1, 3, 6 and 12 months.
Query items before/after the current or selected or choose to show the post from the last 1, 3, 6 and 12 months.

#### Post Order controls

Expand All @@ -65,6 +65,10 @@ Sort in ascending or descending order by:

**Please note that this is a slight duplication of the existing sorting controls. They both work interchangeably but it just looks a bit odd in the UI**

#### Disable Pagination

Improve the performance of the query by disabling pagination

## Extending AQL

Detailed instructions on how to extend AQL as well as an example are available [here](./extending-aql.md)
30 changes: 24 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: welcher
Tags: Query Loop, Custom Queries
Requires at least: 6.2
Tested up to: 6.5.2
Stable tag: 3.2.0
Tested up to: 6.7.1
Stable tag: 4.0.0
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand All @@ -18,36 +18,44 @@ Please use the either the [support](https://wordpress.org/support/plugin/advance

=== Available Controls ===

==== Disable Pagination ====
Improve the performance of the query by disabling pagination
==== Taxonomy queries ====

Built complicated taxonomy queries!

==== Multiple post types ====

Select additional post types for your query!

==== Post Count ====

Set the number of items you want to display (up to 50).

==== Include Posts ====

Choose the posts you want to display manually.
Choose the posts you want to display manually or only the children of the current content.

==== Exclude current post ====

Remove the current post from the query.

==== Exclude posts by category ====

Choose to exclude posts from a list of categories

==== Offset ====

Choose whether you want to start at the first or 100th!

==== Post Meta Query ====

Generate complicated post meta queries using an interface that allows you to create a query based on `meta_key`, `meta_value` and the `compare` options. Combine multiple queries and determine if they combine results (OR) or narrow them down (AND).

==== Date Query ====
Query items before a date, after a date or between two dates or choose to show the post from the last 1, 3, 6 and 12 months.

Query items before/after the current or selected or choose to show the post from the last 1, 3, 6 and 12 months.

==== Post Order controls ====

Sort in ascending or descending order by:

- Author
Expand All @@ -63,13 +71,23 @@ Sort in ascending or descending order by:

**Please note that this is a slight duplication of the existing sorting controls. They both work interchangeably but it just looks a bit odd in the UI**

==== Disable Pagination ====

Improve the performance of the query by disabling pagination

== Screenshots ==

1. Select how many posts you want to display and the number to start at.
2. Create complicated queries for post types with registered post meta.x
3. Query posts before a date, after a date or between two dates.

== Changelog ==
= 4.0.0 =
* Introducing the new Taxonomy Builder!
* Show children of current item only.
* Adds before and after current date controls
* Clean up the UI.

= 3.2.0 =
* Adds the ability to exclude posts by category (props @ghost-ng)
* Adds the ability to disable pagination.
Expand Down

0 comments on commit e6f7fe7

Please sign in to comment.