Skip to content

Instantly share code, notes, and snippets.

@yratof
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save yratof/d7481225301b6fe8be6e to your computer and use it in GitHub Desktop.

Select an option

Save yratof/d7481225301b6fe8be6e to your computer and use it in GitHub Desktop.
Get Barley and Custom Fields with Types
<?php
// Using a custom field called wpcf-home-heading created by types.
// The entered value of this is: Plastic Cards to get you noticed
<?php
$field = types_render_field("home-heading", array());
if ( function_exists( 'barley_wrapper' )) {
echo barley_wrapper('wp_custom_field' , $field, ($field));
} else {
echo $field;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment