oś czasu
function add_custom_timeline_express_field( $custom_fields ) {
$custom_fields = array(
array(
'name’ => __( 'Example Text Field’, 'timeline-express’ ),
'desc’ => __( 'this is an example user defined text field.’, 'timeline-express’ ),
'id’ => 'announcement_user_defined_text’,
'type’ => 'text_medium’,
),
array(
'name’ => __( 'Example WYSIWYG’, 'timeline-express’ ),
'desc’ => __( 'this is an example wysiwyg field.’, 'timeline-express’ ),
'id’ => 'announcement_user_defined_wysiwyg’,
'type’ => 'wysiwyg’,
),
array(
'name’ => __( 'Example Email Field’, 'timeline-express’ ),
'desc’ => __( 'this is an example user defined email field.’, 'timeline-express’ ),
'id’ => 'announcement_user_defined_money’,
'type’ => 'text_email’,
)
);
return $custom_fields;
}
add_filter( 'timeline_express_custom_fields’ , 'add_custom_timeline_express_field’ );