Use the Advanced Custom Fields plugin to take full control of your edit screens & custom field data
Download for free
Once installed, simply create a field group, add your fields and define the location rules.
Presto! Your fields have appeared and are ready for data.
With over 20 field types (free, premium and user submitted) to choose from, custom data management couldn’t be easier, or look any better!
Need something custom? Create your own field type!
<?php
// vars
$image = get_field('hero_image');
?>
<h1><?php the_title(); ?></h1>
<?php if( get_field('sub_heading') ): ?>
<h2><?php the_field('sub_heading'); ?></h2>
<?php endif; ?>
<div class="hero">
<img src="<?php echo $image['url']; ?>" />
</div>
<div class="row">
<div class="col-6">
<?php the_field('content_block_left'); ?>
At the core of the Advanced Custom Fields plugin is the simple and intuitive API.
Use functions like get_field() and the_field() to quickly build powerful templates.
The support forum is a community powered knowledge base of questions, solutions, bug reports, user submitted fields and code examples