Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
netodolele.com.br
/
wp-content
/
plugins
/
jet-engine
/
includes
/
components
/
listings
/
macros
/
Editing: today.php
<?php namespace Jet_Engine\Macros; /** * Return today timestamp. */ class Today extends \Jet_Engine_Base_Macros { /** * @inheritDoc */ public function macros_tag() { return 'today'; } /** * @inheritDoc */ public function macros_name() { return esc_html__( 'Today', 'jet-engine' ); } /** * @inheritDoc */ public function macros_callback( $args = array() ) { return strtotime( 'Today 00:00' ); } }
Save
Cancel