Skip to content

Instantly share code, notes, and snippets.

@messica
Created May 18, 2014 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save messica/2b4a6731fbfc70492f48 to your computer and use it in GitHub Desktop.
Save messica/2b4a6731fbfc70492f48 to your computer and use it in GitHub Desktop.
PMPro GetResponse Custom Fields Example
<?php
/* PMPro GetResponse Custom Fields Example */
function my_pmpro_getresponse_custom_fields() {
$fields = array(
'company' => 'XYZ Company',
'title' => 'CEO'
);
return $fields;
}
add_filter('pmpro_getresponse_custom_fields', 'my_pmpro_getresponse_custom_fields');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment