nanosoup / erebus
A starter theme for Wordpress sites built with Mimir
Installs: 9 451
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 4
Open Issues: 52
Language:SCSS
Type:wordpress-theme
Requires
- php: >=7.2
- composer/installers: ^1.6
- dev-master
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- v1.0.0
- dev-depfu/update/yarn/webpack-4.44.2
- dev-depfu/update/yarn/webpack-5.94.0
- dev-depfu/update/yarn/jquery-3.7.1
- dev-depfu/update/yarn/stylelint-15.10.1
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/terser-4.8.1
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/node-sass-7.0.0
- dev-depfu/update/yarn/node-sass-7.0.1
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/url-parse-1.5.3
- dev-dependabot/npm_and_yarn/color-string-1.6.0
- dev-dependabot/npm_and_yarn/css-loader-5.2.7
- dev-dependabot/npm_and_yarn/webpack-cli-4.7.2
- dev-feature/updating-base-files
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/resolve-url-loader-4.0.0
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-depfu/update/yarn/resolve-url-loader-3.1.3
- dev-dependabot/add-v2-config-file
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-depfu/update/yarn/jquery-3.6.0
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/webpack-fix-style-only-entries-0.6.1
- dev-dependabot/npm_and_yarn/webpack-dev-server-3.11.2
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-depfu/update/yarn/eslint-plugin-standard-4.1.0
- dev-dependabot/npm_and_yarn/terser-webpack-plugin-4.2.3
- dev-dependabot/npm_and_yarn/acorn-6.4.2
- dev-dependabot/npm_and_yarn/bl-1.2.3
- dev-dependabot/npm_and_yarn/node-sass-4.13.1
- dev-dependabot/npm_and_yarn/decompress-4.2.1
- dev-depfu/update/yarn/node-sass-4.14.1
- dev-dependabot/npm_and_yarn/dot-prop-4.2.1
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/jquery-3.5.0
- dev-depfu/update/yarn/eslint-config-airbnb-17.1.1
- dev-dependabot/npm_and_yarn/normalize.css-8.0.1
- dev-dependabot/npm_and_yarn/stylelint-10.1.0
- dev-dependabot/npm_and_yarn/svgo-1.3.2
- dev-dependabot/npm_and_yarn/mixin-deep-1.3.2
- dev-dependabot/npm_and_yarn/eslint-utils-1.4.3
- dev-feature/webpack-integration
- dev-hotfix/cs-fs
- dev-feature/style-fixes
- dev-jezemery-patch-1
This package is auto-updated.
Last update: 2024-09-27 20:24:25 UTC
README
This is a template for a WP site.
Example blocks and Field Groups
Within this theme you will find in the classes/ACF
folder - Blocks and FieldGroups directories.
These are here for example only on how to register a new block for Gutenberg along with the field groups for the block.
Seeing the example blocks in action
To activate the example blocks follow these steps:
- Update the namespaces in both testimonials classes to match your site namespace
Change this:
namespace NanoSoup\Erebus\ACF\Blocks;
To this:
namespace {{ SITE_NAMESPACE }}\ACF\Blocks;
- Add the following code to your functions.php file:
$fieldGroups = new \{{ SITE_NAMESPACE }}\ACF\FieldGroups\Testimonials();
$fieldGroups->init();
$testimonials = new \{{ SITE_NAMESPACE }}\ACF\Blocks\Testimonials();
$testimonials->init();
You will then be able to select and use the Testimonials block within the Gutenberg editor