Last active
January 26, 2016 16:17
-
-
Save ideag/2e9c80c04cf4a01f760f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
add_filter( 'harvestteachings_metabox_fields', 'arunas_teaching_author' ); | |
function arunas_teaching_author($metabox) { | |
$metabox['fields']['ht_speaker']['default'] = 'Your Speaker name'; | |
return $metabox; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment