Display post divider in between post in WordPress

Well, adding a divider between the posts makes it more clear and gives orderly look. Here is the snippet to add a divider between the posts skipping the last post. In the above code, we are adding condition if the current post + 1 is lesser than the number of the post count then we

Change post excerpt length in WordPress

By default in WordPress, the length of the excerpt is 55 words.However, what if you wanted to show more or less than 55 words for the post excerpt for this we have a small snippet that will help to change the length of the excerpt to 30 words. You can adjust the limit of words

Change admin footer text in WordPress

If you don’t want the WordPress default admin footer text then this snippet may help you to edit the code to add your own links, text, or anything that you desired to add to your admin footer. Paste the code in the function.php file in the child theme and add what you like. in the

Add a custom dashboard logo in WordPress

Have you ever thought of changing the dashboard logo in WordPress?Alternatively, ever wonder about branding your site by adding just a logo. So here is a small snippet that helps to replace the default logo with your branding logo. First, add the logo image in the thems’s images folder, or if you don’t find such

Login/Logout and user welcome in WordPress

We should welcome the users on our site to make them comfortable and also to enhance the design of our site. Insert this code to add a login/logout message. Paste the code in the function.php file in the child theme. In the above code first, we are checking if the user is login or not

How to customize login logo in WordPress

This is great to add more branding to your site or for your client’s site it gets more attractive to your user when you take care of such things to improve your branding. First, add the logo to your theme’s images folder if you don’t find any such folder then create it and add the

How to increase memory limit in WordPress

Are you looking for a way to increase the built-in memory limit in WordPress? Well here is the small snippet which can be used to increase the limit. Edit your wp-config.php fileAdd the following to the wp-config.php file. Above the line that says /* That’s all, stop editing! Happy blogging. */ Edit your PHP.ini fileIf

Scroll to Top