php 事件日历:从Mini Calendar小部件中删除`tribe-event-featured`类。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 事件日历:从Mini Calendar小部件中删除`tribe-event-featured`类。相关的知识,希望对你有一定的参考价值。
<?php
/**
* The Events Calendar: Remove the `tribe-event-featured` class from Mini Calendar widgets.
*
* @link https://gist.github.com/cliffordp/822336f011df7d8106a1e13f6f7d7226 This snippet.
*/
function cliff_tribe_remove_featured_class_from_mini_widget() {
wp_enqueue_script( 'jquery' );
?>
<script>
jQuery( document ).ready( function () {
jQuery( 'section.tribe_mini_calendar_widget .tribe-events-loop .tribe-event-featured' ).removeClass( 'tribe-event-featured' );
} );
</script>
<?php
}
add_action( 'wp_footer', 'cliff_tribe_remove_featured_class_from_mini_widget' );
以上是关于php 事件日历:从Mini Calendar小部件中删除`tribe-event-featured`类。的主要内容,如果未能解决你的问题,请参考以下文章
Google Calendar API 出错 - 添加日历事件时需要 401 登录
Google Calendar API 在 Pod 更新后向日历插入事件时会出现 404。
Google Calendar API v3 - 使用硬编码凭据进行身份验证
Google Calendar API 日历 ID 和事件 ID
在 php 中使用 google calendar api v3 获取定期事件
android怎么把3.0自带日历控件calendarview每个日期按钮设置事件,如跳转之类的。