WordPress Developer Ukraine, Kyiv
Get ACF field values in WordPress templates and functions

Get ACF field values in WordPress templates and functions

Advanced Custom Fields is one of the most installed WordPress plugins for a reason: it bridges the gap between WordPress as a blogging platform and WordPress as a structured content management system without requiring developers to write custom meta box code from scratch. Instead of building registration arrays, sanitization callbacks, and rendering functions for every…
Register a custom post type in WordPress the right way

Register a custom post type in WordPress the right way

WordPress ships with two built-in content types — posts and pages — that cover the standard blogging and static content use cases the platform was originally designed for. As WordPress evolved into a general-purpose content management system and application framework, developers began building sites that needed to manage fundamentally different types of structured content: real…
Change default posts slug

Change default posts slug

How to add slug for default posts Let’s imagine, that your customer or you use default posts for the blog. How you known in this case, URL of posts don’t contains any slug. But your customer or you need add some slug to URL, for example, for improve SEO performance of a site. And if…
Adding tags to custom post type

Adding tags to custom post type

How to add tags to custom post type? Most WordPress developers, when they should be use something like default tags of posts, but for custom post types register a new taxonomy. However, this approach is not comfortable, at least because at start we should be register tags-terms, and then use it in a posts. In…