// Add Shortcode function days_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'start' => 'now', 'end' => 'now', ), ); $init = new DateTime($start); $finit = new DateTime($end); $interval = $init -> diff($finit); return $interval -> format('%a'); } add_shortcode( 'days', 'days_shortcode' );