Wordpress日历中的天颜色

时间:2017-01-15 15:07:14

标签: jquery wordpress fullcalendar

我正在制作一个wordpress项目,其中我需要显示具有特定日期颜色的日历:星期六是黄色的,星期一是蓝色的等等...我尝试使用FullCalendar插件但它没有工作,这是一个例子:

    .fc-sat, .fc-sun{
background-color: yellow;
}    

有关如何更改它的任何想法,或者是否有其他插件可以完成这项工作?

2 个答案:

答案 0 :(得分:0)

在你的主题css中试试这个:

.fc-sat{ background: yellow !important; }

答案 1 :(得分:0)

在日历初始化中定义eventAfterRender,如下所示:

$('#calendar').fullCalendar({

  eventAfterRender: function (event, element, view) {

   if (event.start.day() == 0) {
            element.css('background-color', 'blue');
            element.css('border-color', 'blue'); // colors first day of the week blue
   }
  else if (event.start.day() == 1) {
    ...
  }
  else {
    ...
  }
});