Found a solution for this:
What i was looking for can be accomplished using the PHP date function (docs: https://php.net/manual/en/function.date.php), for example to check for a particular month you can use the condition:
"1" === date( 'n' )
That checks if currently it’s January. You can change that according to your needs.