我对wordpress和内容管理系统相当陌生。我已经开始学习了一些教程。我一直在搜索如何在添加新的自定义帖子类型中包含日期选择器。
我想在这里添加一个额外的字段,以便用户选择一个日期来指定事件发生的时间。我不希望用户通过文本手动键入日期,但希望使用日期选择器,无论是普通的html5日期选择器还是jquery日期选择器。我用来生成它的代码在函数中。php,我知道这可能不是放置我所有代码的最佳位置,但我目前正在尝试,但似乎找不到解决问题的方法。
/*
Custom post types
*/
function awesome_custom_post_type ()
{
$labels = array(
\'name\' => \'Events\',
\'singular_name\' => \'Event\',
\'add_new\' => \'Add Event\',
\'all_items\' => \'All Events\',
\'add_new_item\' => \'Add Event\',
\'edit_item\' => \'Edit Event\',
\'new_item\' => \'New Event\',
\'view_item\' => \'View Event\',
\'search_item_label\' => \'Search Events\',
\'not_found\' => \'No Events Found\',
\'not_found_in_trash\' => \'No Events Found in Trash\',
\'parent_item_colon\' => \'Parent Event\'
);
$args = array(
\'labels\' => $labels,
\'public\' => true,
\'has_archive\' => true,
\'publicly_queryable\' => false,
\'query_var\' => true,
\'rewrite\' => true,
\'capability_type\' => \'post\',
\'hierarchical\' => true,
\'supports\' => array(
\'title\',
\'editor\',
\'thumbnail\',
),
\'menu_icon\' => \'dashicons-calendar-alt\',
\'menu_position\' => 5,
\'excluse_from_search\' => true
);
register_post_type( \'awesome_events\', $args );
}
add_action( \'init\', \'awesome_custom_post_type\' );
提前谢谢。