Code for custom field in edit resume template
I got success in crating child theme, now trying to learn how to play with to customize my templates(tpl pages). i want to add some fields in resume and job pages.
firstly what are the related places where i need to make changes to achieve custom fields on those pages and to be stored as well.
Following is an example of code i added to resume_template for a new field, but nothing happen
. obviously its because i don't know how to do it.
$terms = wp_get_post_terms($resume_id, 'degree');
$terms_array = array();
foreach ($terms as $t) $terms_array[] = $t->name;
$posted['degree'] = implode(', ', $terms_array);
Please some coding & jobroller expert help in customizing theme.