generated from a8cteam51/team51-plugin-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from a8cteam51/fix/infinite-scroll-dupes
Fix infinite scroll dupes
- Loading branch information
Showing
8 changed files
with
138 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<?php return array('dependencies' => array(), 'version' => '3c0f99a875b752effacc'); | ||
<?php return array('dependencies' => array(), 'version' => 'e794f26b7ef47600cb0a'); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,50 @@ | ||
=== Query Loop Load More === | ||
Contributors: wpspecialprojects, tommusrhodus | ||
Tags: gutenberg, editor, block editor, load more, query loop | ||
Requires at least: 6.2 | ||
Tested up to: 6.6.1 | ||
Stable tag: 1.0.4 | ||
Requires PHP: 8.0 | ||
License: GPLv3 or later | ||
License URI: https://www.gnu.org/licenses/gpl-3.0.html | ||
|
||
Adds a load more option to the Query Loop Pagination block in Gutenberg, allowing users to load more posts without refreshing the page. | ||
|
||
== Description == | ||
|
||
Adds a load more option to the Query Loop Pagination block in Gutenberg, allowing users to load more posts without refreshing the page. | ||
|
||
To use this plugin, you must first add the Query Loop block into your post content, then add the Pagination block inside the Query Loop. When working with the Pagination block, you will see new options to enable load more on the block. | ||
|
||
The load more option allows you to set a loading text parameter and also the button text. The load more button works with the alignment options and arrow options of the pagination block. | ||
|
||
Here is how to enable the load more option: | ||
|
||
* Add the Query Loop block to your post content. | ||
* Inside the Query Loop block, add the Pagination block. | ||
* In the Pagination block settings, enable the "Load More" option. | ||
* Set the loading text parameter and the button text. | ||
* Customize the alignment and arrow options if desired. | ||
* That's it! Your visitors can now load more posts by clicking the load more button without refreshing the page. | ||
|
||
== Changelog == | ||
|
||
= 1.0.4 = | ||
* Update - Version | ||
|
||
= 1.0.3 = | ||
* Fix - Loading more posts on "Inherit query from template" | ||
|
||
= 1.0.2 = | ||
* Add - SVN deployment workflow | ||
* Update - Version and Stable tag | ||
|
||
= 1.0.1 = | ||
* Fix - Unify GPL license | ||
* Fix - Unify text domain and plugin slug | ||
|
||
= 1.0.0 = | ||
Initial release. | ||
=== Query Loop Load More === | ||
Contributors: wpspecialprojects, tommusrhodus | ||
Tags: gutenberg, editor, block editor, load more, query loop | ||
Requires at least: 6.2 | ||
Tested up to: 6.6.1 | ||
Stable tag: 1.0.5 | ||
Requires PHP: 8.0 | ||
License: GPLv3 or later | ||
License URI: https://www.gnu.org/licenses/gpl-3.0.html | ||
|
||
Adds a load more option to the Query Loop Pagination block in Gutenberg, allowing users to load more posts without refreshing the page. | ||
|
||
== Description == | ||
|
||
Adds a load more option to the Query Loop Pagination block in Gutenberg, allowing users to load more posts without refreshing the page. | ||
|
||
To use this plugin, you must first add the Query Loop block into your post content, then add the Pagination block inside the Query Loop. When working with the Pagination block, you will see new options to enable load more on the block. | ||
|
||
The load more option allows you to set a loading text parameter and also the button text. The load more button works with the alignment options and arrow options of the pagination block. | ||
|
||
Here is how to enable the load more option: | ||
|
||
* Add the Query Loop block to your post content. | ||
* Inside the Query Loop block, add the Pagination block. | ||
* In the Pagination block settings, enable the "Load More" option. | ||
* Set the loading text parameter and the button text. | ||
* Customize the alignment and arrow options if desired. | ||
* That's it! Your visitors can now load more posts by clicking the load more button without refreshing the page. | ||
|
||
== Changelog == | ||
|
||
= 1.0.5 = | ||
* Fix - Infinite scroll would duplicate some posts due to the same AJAX call being executed twice | ||
|
||
= 1.0.4 = | ||
* Update - Version | ||
|
||
= 1.0.3 = | ||
* Fix - Loading more posts on "Inherit query from template" | ||
|
||
= 1.0.2 = | ||
* Add - SVN deployment workflow | ||
* Update - Version and Stable tag | ||
|
||
= 1.0.1 = | ||
* Fix - Unify GPL license | ||
* Fix - Unify text domain and plugin slug | ||
|
||
= 1.0.0 = | ||
Initial release. |