Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- This snippet will limit the displayed hours for day/week views. You can use this snippet to modify any value in the fullcalendar options as per the documentation - http://fullcalendar.io/docs1/ (this is for WP FullCalendar below v1.0)
- For information on where to paste this, see here - http://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
- */
- function my_wp_fullcalendar_args(){
- ?>
- <script type="text/javascript">
- jQuery(document).bind('wpfc_fullcalendar_args', function( e, options ){
- options.minTime = "9:00am";
- options.maxTime = "5:00pm";
- });
- </script>
- <?php
- }
- add_action('wp_head','my_wp_fullcalendar_args');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement