evanshunt / carbon-fields-smartlink
Carbon Fields extension, that adds a SmartLink field type.
Installs: 1 990
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 3
Language:JavaScript
Requires
- htmlburger/carbon-fields: ^3.6
This package is auto-updated.
Last update: 2024-10-31 01:48:33 UTC
README
This field allows you to select between internal and external links, choosing from a dropdown of Posts and Archives for internal links or manually entering a URL for external.
This repository is based on htmlburger/carbon-fields-template.
Installation
composer require evanshunt/carbon-fields-smartlink
Usage
use Carbon_Fields\Field\Field;
...
Field::make('smartlink', 'your_field_name', 'Your Field Name');
TODO
- Build in logic to neatly upgrade from a text URL field, redefining such as an external link.
- Add support for taxonomies, etc.
Building assets
- Edit
webpack.config.js
and make sureconst root
points to the directory where Carbon Fields are installed (e.g.const root = path.resolve(__dirname, '../vendor/includes/htmlburger/carbon-fields');
) - Execute
yarn install
in the root directory to install all build process requirements. - Execute
yarn build
to build the final minimized assets
Optional
Execute yarn run dev
to continuously build assets during development. Note that you should add define( 'SCRIPT_DEBUG', true );
to your wp-config.php
file in order to load the files generated by the dev build process.