Skip to content

Instantly share code, notes, and snippets.

@kaskad88
Created March 22, 2019 07:10
Show Gist options
  • Save kaskad88/7d1235bac0f395344f9361886c0e37b5 to your computer and use it in GitHub Desktop.
Save kaskad88/7d1235bac0f395344f9361886c0e37b5 to your computer and use it in GitHub Desktop.
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