Last active
August 29, 2015 14:18
-
-
Save Dinamiko/e7d789ce4a0d2ac899e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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