Entries by

Adding Pagination To WordPress Theme Without Plugin

Adding pagination to WordPress theme without plugins consists of several steps. We will go through these steps. I suggest you create a child theme before adding pagination. Adding CSS Codes To WordPress Add the following CSS codes to your theme’s style.css file. You can customize it to your own. /* Pagination */ .wp_paging {     […]

Setting Up Your Own Git Server

Setting up your own git server is very useful. You can set up your own git server on Vps, Vds, Dedicated servers or even on your local machine. I assume you have installed git on your Linux server. First we need to create a git directory under the root directory. In the following code I […]

WordPress Security Tips

It is very important to take security measures for WordPress. If you do not take your security measures, your site may be hacked or you may suffer data loss. Security Tips During WordPress Installation 1) Create a strong user password database. It must contain uppercase letters, lowercase letters, numbers, and special characters. 2) Don’t make […]

How To Close, Delete, Limit Revisions On WordPress

There is a feature called revisions for articles, pages on WordPress. When you make changes to an article or page, it keeps the previous version of each change separately. But it can be annoying and harmful sometimes. For example, if you change ten times on an article or page, there will be 10 old revisions. […]

How to Add Social Share Buttons

In this article, I will tell you how to add social media sharing buttons. The theme you are going to add will not matter whether it’s html or WordPress. All of these codes are from the developers’ pages of the social media platforms. You can also look theirs site. Facebook Share Button In this code […]