development ); } /** * Version * * Return the Agama theme version. * * @since 1.5.0 * @access public * @return bool */ public function version() { $theme = wp_get_theme(); $version = $theme->get( 'Version' ); if( $this->development ) { $version = uniqid(); } return esc_attr( $version ); } } /* Omit closing PHP tag to avoid "Headers already sent" issues. */