After a comment from a user on a post we shared detailing new Instagratify features, we wrote up this quick function to see how his suggestion might be applied. When scheduling from Instagram, he didn't want to share posts on a weekend - instead posting on the next Monday at a certain time.
The function below will assess a timestamp to determine if it falls on a Saturday or Sunday and, if it does, determine the timestamp of the following Monday (at a certain time).
1
<?php
2
/*
3
Determine The First Monday Timestamp After a Weekend
4
http://www.beliefmedia.com/code/php-snippets/first-monday-timestamp
5
*/
6
7
function beliefmedia_next_monday($timestamp, $time = '10am') {
8
9
10
11
12
return $timestamp;
13
}
Usage is as follows: