Skip to content

Instantly share code, notes, and snippets.

@amielucha
Created January 12, 2016 12:33
Show Gist options
  • Select an option

  • Save amielucha/f598331169f552a10c39 to your computer and use it in GitHub Desktop.

Select an option

Save amielucha/f598331169f552a10c39 to your computer and use it in GitHub Desktop.
WordPress Types field retrieval
<?php
// Get fields
if ( function_exists( 'types_render_field' ) ){
$address = types_render_field("address", array("output"=>"html"));
}
// Echo fields
if ($address) echo $address;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment