0

我正在尝试为 WordPress 中的几次旅行设定一个思维定势。在 Tour Master 插件中,可以设置最后一分钟的预订,但您只会在尝试预订时收到通知。相反,我希望人们根本无法选择这些日期。

我为function.php制作了下一个代码

add_action( 'wp_enqueue_scripts', 'km_enqueue_assets' );
function km_enqueue_assets() {
  wp_enqueue_script('mindate_script', get_stylesheet_directory_uri() . '/js/mindate.js', array('jquery'));
};

此外,我想将以下 mindate.js 文件添加到我的子主题中:

jQuery.noConflict();
jQuery(document).ready(function($) {
  $( "#dp1616173565827" ).datepicker({ minDate: '+7d', gotoCurrent: true, prevText: '', showOn: 'both'});
});

这是我要更改的特定框中的日期选择器的 ID:dp1616173565827

这是正确的方法吗?

4

0 回答 0