Skip to content

Instantly share code, notes, and snippets.

@timothyjensen
Created March 1, 2017 02:01
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Example config for get_all_custom_field_meta()
<?php
$config = array(
array(
'name' => 'prefix_subtitle',
),
array(
'name' => 'prefix_content_row',
'sub_fields' => array(
array(
'name' => 'css_classes',
),
array(
'name' => 'background_color',
),
array(
'name' => 'columns',
'sub_fields' => array(
array(
'name' => 'column',
),
),
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment