true, 'label' => 'Anys', 'singular_label' => 'Any', 'rewrite' => true));
}
function dades_obres_autor() {
global $post;
$custom = get_post_custom($post->ID);
$autor_obra = $custom['autor_obra'][0];
$data_obra = $custom['data_obra'][0];
$autor_data_resid = $custom['autor_data_resid'][0];
$autor_tipo_resid = $custom['autor_tipo_resid'][0];
//here we construct the fields for the backend user interface
?>
ID);
$data_activitat = $custom['data_activitat'][0];
$data_activitatES = $custom['data_activitatES'][0];
$data_activitatEN = $custom['data_activitatEN'][0];
$lloc_activitat = $custom['lloc_activitat'][0];
$horari_activitat = $custom['horari_activitat'][0];
//here we construct the fields for the backend user interface
?>
ID);
$carrec = $custom['carrec'][0];
$carrecES = $custom['carrecES'][0];
$carrecEN = $custom['carrecEN'][0];
$email = $custom['email'][0];
$telefon = $custom['telefon'][0];
//here we construct the fields for the backend user interface
?>
ID);
$Inici = $custom['Inici'][0];
$Ordre_inici = $custom['Ordre_inici'][0];
//here we construct the fields for the backend user interface
?>
/>
ID;
// verify if this is an auto save routine. If it is our form has not been submitted, so we dont want
// to do anything
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
return $post_id;
if ($post->post_type == 'page') :
update_post_meta($post_id, "autor_obra", $_POST['autor_obra']);
update_post_meta($post_id, "data_obra", $_POST['data_obra']);
update_post_meta($post_id, "autor_data_resid", $_POST['autor_data_resid']);
update_post_meta($post_id, "autor_tipo_resid", $_POST['autor_tipo_resid']);
update_post_meta($post_id, "Inici", $_POST['Inici']);
update_post_meta($post_id, "Ordre_inici", $_POST['Ordre_inici']);
update_post_meta($post_id, "carrec", $_POST['carrec']);
update_post_meta($post_id, "carrecES", $_POST['carrecES']);
update_post_meta($post_id, "carrecEN", $_POST['carrecEN']);
update_post_meta($post_id, "email", $_POST['email']);
update_post_meta($post_id, "telefon", $_POST['telefon']);
else :
update_post_meta($post_id, "Inici", $_POST['Inici']);
update_post_meta($post_id, "Ordre_inici", $_POST['Ordre_inici']);
update_post_meta($post_id, "data_activitat", $_POST['data_activitat']);
update_post_meta($post_id, "data_activitatES", $_POST['data_activitatES']);
update_post_meta($post_id, "data_activitatEN", $_POST['data_activitatEN']);
update_post_meta($post_id, "lloc_activitat", $_POST['lloc_activitat']);
update_post_meta($post_id, "horari_activitat", $_POST['horari_activitat']);
endif;
} //end function
?>