diff --git a/README.md b/README.md
index 3d51c6e6..624e244c 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,7 @@ If you want to set things up manually, download `_s` from GitHub. The first thin
3. Search for `Text Domain: _s` in `style.css`.
4. Search for _s
(with a space before it) to capture DocBlocks.
5. Search for `_s-` to capture prefixed handles.
+6. Search for `_S_` (in uppercase) to capture constants.
OR
@@ -39,6 +40,7 @@ OR
3. Search for: `Text Domain: _s` and replace with: `Text Domain: megatherium-is-awesome` in `style.css`.
4. Search for: _s
and replace with: Megatherium_is_Awesome
.
5. Search for: `_s-` and replace with: `megatherium-is-awesome-`.
+6. Search for: `_S_` and replace with: `MEGATHERIUM_IS_AWESOME_`.
Then, update the stylesheet header in `style.css`, the links in `footer.php` with your own information and rename `_s.pot` from `languages` folder to use the theme's slug. Next, update or delete this readme.
diff --git a/functions.php b/functions.php
index c440ca41..32d2dcc2 100644
--- a/functions.php
+++ b/functions.php
@@ -8,8 +8,8 @@
*/
if ( ! defined( '_S_VERSION' ) ) {
- // Replace #.# with the version number of the theme on each release.
- define( '_S_VERSION', '#.#' );
+ // Replace the version number of the theme on each release.
+ define( '_S_VERSION', '1.0.0' );
}
if ( ! function_exists( '_s_setup' ) ) :