Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Automatically Paginate Posts
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WP Plugins
Automatically Paginate Posts
Commits
98d83920
Commit
98d83920
authored
2 years ago
by
Erick Hitter
Browse files
Options
Downloads
Patches
Plain Diff
Test coverage
parent
5c3a87aa
No related branches found
No related tags found
1 merge request
!5
Add block-editor support
Pipeline
#4963
failed with stages
Stage:
Stage:
in 1 minute and 58 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
automatically-paginate-posts.php
+29
-1
29 additions, 1 deletion
automatically-paginate-posts.php
tests/test-automatically-paginate-posts.php
+44
-3
44 additions, 3 deletions
tests/test-automatically-paginate-posts.php
with
73 additions
and
4 deletions
automatically-paginate-posts.php
+
29
−
1
View file @
98d83920
...
...
@@ -34,6 +34,16 @@ require_once dirname( __FILE__ ) . '/inc/class-block-editor.php';
* Class Automatically_Paginate_Posts.
*/
class
Automatically_Paginate_Posts
{
/**
* WordPress Quicktag that creates pagination.
*/
protected
const
QUICKTAG
=
'<!--nextpage-->'
;
/**
* String length of nextpage Quicktag.
*/
protected
const
QUICKTAG_LENGTH
=
15
;
/**
* Supported post types.
*
...
...
@@ -711,11 +721,29 @@ class Automatically_Paginate_Posts {
);
if
(
$word_counter
>=
$num_words
)
{
$content
[
$index
]
.
=
'<!--nextpage-->'
;
$content
[
$index
]
.
=
static
::
QUICKTAG
;
$word_counter
=
0
;
}
}
// Prevent the last page from being empty.
$last_page
=
array_pop
(
$content
);
if
(
static
::
QUICKTAG
===
substr
(
$last_page
,
-
static
::
QUICKTAG_LENGTH
)
)
{
$content
[]
=
substr
(
$last_page
,
0
,
strlen
(
$last_page
)
-
static
::
QUICKTAG_LENGTH
);
}
else
{
$content
[]
=
$last_page
;
}
break
;
case
'pages'
:
...
...
This diff is collapsed.
Click to expand it.
tests/test-automatically-paginate-posts.php
+
44
−
3
View file @
98d83920
...
...
@@ -111,7 +111,12 @@ class Test_Automatically_Paginate_Posts extends WP_UnitTestCase {
public
function
test_filter_the_posts
(
$expected
,
$input
)
{
$post
=
$this
->
factory
->
post
->
create_and_get
(
$input
[
'post_args'
]
);
update_option
(
'autopaging_paging_type'
,
$input
[
'type'
]
);
add_filter
(
'pre_option_pages'
,
static
function
()
use
(
$input
)
{
return
$input
[
'type'
];
}
);
add_filter
(
'autopaging_num_pages'
,
static
function
()
use
(
$input
)
{
...
...
@@ -162,7 +167,7 @@ class Test_Automatically_Paginate_Posts extends WP_UnitTestCase {
'num_words'
=>
2
,
),
),
'Classic post, two pages'
=>
array
(
'Classic post, two
pages, split to
pages'
=>
array
(
"1
\r\n\r\n
2<!--nextpage-->
\r\n\r\n
3"
,
array
(
'post_args'
=>
array
(
...
...
@@ -174,7 +179,7 @@ class Test_Automatically_Paginate_Posts extends WP_UnitTestCase {
'num_words'
=>
2
,
),
),
'Classic post, three pages'
=>
array
(
'Classic post, three
pages, split to
pages'
=>
array
(
"1<!--nextpage-->
\r\n\r\n
2<!--nextpage-->
\r\n\r\n
3"
,
array
(
'post_args'
=>
array
(
...
...
@@ -186,6 +191,42 @@ class Test_Automatically_Paginate_Posts extends WP_UnitTestCase {
'num_words'
=>
2
,
),
),
'Classic post, one page, split on words'
=>
array
(
"1
\r\n\r\n
2
\r\n\r\n
3
\r\n\r\n
4"
,
array
(
'post_args'
=>
array
(
'post_type'
=>
'post'
,
'post_content'
=>
"1
\r\n\r\n
2
\r\n\r\n
3
\r\n\r\n
4"
,
),
'type'
=>
'words'
,
'num_pages'
=>
2
,
'num_words'
=>
5
,
),
),
'Classic post, two pages, split on words'
=>
array
(
"1
\r\n\r\n
2<!--nextpage-->
\r\n\r\n
3
\r\n\r\n
4"
,
array
(
'post_args'
=>
array
(
'post_type'
=>
'post'
,
'post_content'
=>
"1
\r\n\r\n
2
\r\n\r\n
3
\r\n\r\n
4"
,
),
'type'
=>
'words'
,
'num_pages'
=>
2
,
'num_words'
=>
2
,
),
),
'Classic post, three pages, split on words'
=>
array
(
"1<!--nextpage-->
\r\n\r\n
2<!--nextpage-->
\r\n\r\n
3<!--nextpage-->
\r\n\r\n
4"
,
array
(
'post_args'
=>
array
(
'post_type'
=>
'post'
,
'post_content'
=>
"1
\r\n\r\n
2
\r\n\r\n
3
\r\n\r\n
4"
,
),
'type'
=>
'words'
,
'num_pages'
=>
2
,
'num_words'
=>
1
,
),
),
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment