What is a 404? 404 is the response status that your website sends to the client (visitor’s browser) when the visitor gets on a page that does not exist. WordPress does that pretty well and a theme can customize that page as needed. But what about getting a very fast 404 page and also to manage all those 404 urls? Meet, Forty Four, a great plugin to manage your WordPress 404 pages.
Tag: wordpress
How to Create a Custom WordPress Metabox with OOP
WordPress Metabox is an additional content that can be added for any post type (post, page or custom). Every metabox can be used to display some information or to enable the user to insert additional information. In this tutorial we will learn how to easily create additional metaboxes using object oriented programming (OOP).
How to Create Custom WordPress Post Statuses
Custom WordPress post statuses are useful when creating different custom post types and their statuses. One of the best example on how to use them is WooCommerce and the order statuses. In this tutorial we will create a simple class that will handle creating custom post statuses with ease.
How to Create Extendable WordPress Forms
Creating forms in WordPress can be difficult. By using OOP and WordPress hooks, you can create forms that can be extended as needed and also perform various tasks. With popular plugins such as Gravity forms or Contact Form 7, you might not need to create forms on a regular basis, but in some custom solutions you might have to create your own forms.
How to Create Dynamic WordPress Email Templates
Dynamic email templates are a very common thing and they are interesting to implement. In this tutorial we will create some email templates in our WordPress administration which will get populated by user data and sent to our email after a user registers.