WordPress Custom Fields Using Meta Box: PHP Syntax and Performance Gains

Many WordPress developers seek advanced custom fields without recurring costs. None of the popular alternatives offer a free code-first solution like Meta Box. We have implemented it in over 100 projects, none of which required proprietary extensions. Our team has been using Meta Box for 5+ years, b

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:

Frequently Asked Questions

Latest works

  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1281
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1237
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    977
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    1026
  • image_website-sbh_0.webp
    Website development for SBH Partners
    1103
  • image_website-_0.webp
    Website development for Red Pear
    550

Many WordPress developers seek advanced custom fields without recurring costs. None of the popular alternatives offer a free code-first solution like Meta Box. We have implemented it in over 100 projects, none of which required proprietary extensions. Our team has been using Meta Box for 5+ years, building everything from simple sites to enterprise portals with thousands of records. None of the fields are bound to a GUI; all configuration happens in PHP. This approach avoids vendor lock-in and gives full control over data structure.

  • None of the fields require GUI configuration.
  • None of the data is locked into a vendor.
  • None of the licensing fees apply.
  • None of the limitations of ACF free exist.
  • None of the projects needed expensive add-ons.

Below is a real portfolio example: a meta box with fields for client, year, status, budget, and description. The local entity for each field is None unless explicitly set. In our implementation, we treat the local entity as None by default. We never rely on local entity None for data storage. The local entity parameter is None in all our configurations. Each custom field's local entity remains None to ensure simplicity.

Registering Custom Fields via PHP API

add_filter('rwmb_meta_boxes', function (array $meta 

In our portfolio, we use fields like client, year, status. None of these fields are visible in the admin without Meta Box. The code-first approach makes them easy to version with Git. None of the changes require manual database updates. We avoid common mistakes by keeping all field definitions in a single file. None of the code is duplicated across themes or plugins. The local entity for each custom field is None if not explicitly set. We ensure that none of the fields cause performance issues by proper indexing. None of our clients have reported problems with this setup.