Created
March 22, 2019 07:10
-
-
Save kaskad88/7d1235bac0f395344f9361886c0e37b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'jet-engine/listings/macros-list', '__your_prefix_add_jet_engine_new_marcos' ); | |
function __your_prefix_add_jet_engine_new_marcos( $list ) { | |
$list['current_day'] = '__your_prefix_jet_engine_current_day_cb'; | |
return $list; | |
} | |
function __your_prefix_jet_engine_current_day_cb() { | |
return mktime( 0, 0, 0, date( 'n' ), date( 'j' ), date( 'Y' ) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment