惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
罗磊的独立博客
J
Java Code Geeks
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
Jina AI
Jina AI
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
C
Check Point Blog
GbyAI
GbyAI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a Free ACF Alternative (Wordpress Custom Fields 2...
Shayan · 2026-04-30 · via DEV Community

You know that moment when you’re building a WordPress site and think, “Man, I really don’t want to pay for another premium plugin”?

Yeah, me too.

So I built OpenFields.

It’s a 100% free, open-source custom fields plugin for WordPress. Think of it like ACF — but without the premium tiers, locked features, or vendor lock-in.

And honestly? It’s been way more fun than I expected.


Why I Made This (The Long Version)

Custom fields are basically essential for WordPress development. But if you want repeaters, conditional logic, or anything beyond the basics, you’re looking at ACF’s pricing model. Nothing wrong with ACF — their product is solid. But I wanted something that:

✅ Is actually 100% free (no premium tiers hiding behind paywalls)

✅ Is open source (you own your tools, not the other way around)

✅ Uses a familiar API so you don’t have to relearn everything

✅ Actually feels modern to build with

So yeah. I decided to build it myself.


So What Is OpenFields?

It’s a custom fields plugin that lets you add fields to posts, pages, custom post types, taxonomies, and users. The admin interface is built with React and TypeScript — fast, responsive, and actually pleasant to use.

The Visual Builder

Drag and drop fieldsets together. No code needed. Add fields, organize them, set rules — all in a clean UI.

All the Field Types (Yes, Including Repeater)

Text, textarea, number, email, URL, WYSIWYG, image, gallery, file, select, radio, checkbox, switch, date picker, datetime, time, color picker, link, post object, taxonomy, user, repeater, group. Everything you actually need.

Conditional Logic That Works

Show or hide fields based on other field values. Set it up in the UI, it just works. No “I configured this but it’s acting weird” nonsense.

Location Rules

Display your fieldsets exactly where you need them — specific post types, user roles, taxonomies, you name it.

Openfields by codeideal plugin features


The API (Yes, It’s Familiar)

If you’ve used ACF, you already know how to use OpenFields. Same functions, same logic:

$price = get_field(price);

Enter fullscreen mode Exit fullscreen mode

For repeaters:

if (have_rows(team_members)) {  
    while (have_rows(team_members)) {  
        the_row();  
        echo get_sub_field(name);  
    }  
}

Enter fullscreen mode Exit fullscreen mode

No learning curve. Just works.


Getting Started (Right Now)

  1. Download from GitHub Releases or search “Codeideal Open Fields” on WordPress.org
  2. Upload to WordPress (Plugins → Add New → Upload)
  3. Activate and go to OpenFields in your admin menu
  4. Build your first fieldset

Seriously, you’ll be up and running in like 5 minutes.

Important links:


A Real Talk About Community Support

Here’s the thing.

Building and maintaining a free, open-source plugin takes time. A LOT of time. And I genuinely love working on OpenFields — there’s so much more I want to build, new features, better UX, more field types.

But tools like this only survive with community support. If everyone just uses it and nobody helps, it eventually falls behind. No updates, no fixes, no new features. And that would honestly suck.

So if OpenFields has helped you save time or money, please consider:

Starring the repo on GitHub — it literally helps more people discover it

Sponsoring the project — even a small amount helps me dedicate more time to development

💬 Reporting bugs or suggesting features — every issue helps me make it better

I really mean it — every bit of support makes a difference. The WordPress community is better when we build things together.


Join In

This is an open source project. If you:

  • Find bugs → report them
  • Have ideas → share them
  • Want to contribute → pull requests welcome

The WordPress community is better when we build things together.


Quick Links

That’s it. OpenFields is free, open source, and ready to use. No credit card required, no lock-in, no nonsense.

Give it a shot. I think you’ll like it.