Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active August 29, 2015 14:18
Show Gist options
  • Save Dinamiko/e7d789ce4a0d2ac899e9 to your computer and use it in GitHub Desktop.
Save Dinamiko/e7d789ce4a0d2ac899e9 to your computer and use it in GitHub Desktop.
function custom_devent_speaker_meta_fields( $fields ) {
$fields['devent_speaker_tumblr'] = array(
'name' => __( 'Tumblr:' , 'devent' ),
'description' => '',
'type' => 'url',
'default' => '',
);
return $fields;
}
add_filter( 'devent_speaker_meta_fields', 'custom_devent_speaker_meta_fields', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment