This is the step-by-step tutorial to split WordPress posts into multiple pages, in addition, I will also share a CSS code to decorate it. There are many free plugins are available in the WordPress directory but using a plugin for a simple task is not a good practice at all.

How To Split WordPress Post Into Multiple Pages?

Step 1: Add/Edit a post
Step 2: Add “Page Break” block in a new line (Shortcut /Page)
Step 3: Add multiple page break in one post in how many pages you want to break single page
Step 4: Navigate to Appearance > Customize > Additional CSS > Paste any of the below Code

.post-page-numbers {
	width:20px;
	margin: 20px auto;
	padding: 5px 10px;
	border: 2px solid #000;
	border-radius: 5px ;
	display: inline-block;
	text-align:center;
}

Or

.post-page-numbers {
	margin: 20px auto;
	text-align: center;
	width: 100%;
	border: 2px solid #0E8C05;
	font-weight: 700;
	padding: 5px 35px;
	color:#0E8C05;
	transition:ease 0.5s !important;
	text-decoration: none;
}

That’s all

Wrap Up

I hope now you can also split WordPress posts into multiple pages with beautiful designs. I have provided two different designs of CSS, you can customize it by your own code or by customizing the given one. If this article is useful to you then make sure to share it on social media.

Happy Blogging!

Similar Posts