The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
<?php | |
/** | |
* Add skip-lazy class to first image in content. | |
*/ | |
add_filter( 'the_content', function( $content ) { | |
// Check if we have no content. | |
if ( empty( $content ) ) { | |
return $content; | |
} |
<script> | |
var time = new Date(); | |
var dayOfWeek = time.getDay(); | |
// Set office opening time to 8:15am | |
var startTime = new Date().setHours(8,15); | |
// Set office closing time to 4:15pm | |
var endTime = new Date().setHours(16,15); | |