evanshunt / carbon-fields-smartlink
Carbon Fields extension, that adds a SmartLink field type.
Installs: 2 077
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 3
Language:JavaScript
pkg:composer/evanshunt/carbon-fields-smartlink
Requires
- htmlburger/carbon-fields: ^3.6
This package is auto-updated.
Last update: 2025-10-29 02:43:00 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.jsand make sureconst rootpoints to the directory where Carbon Fields are installed (e.g.const root = path.resolve(__dirname, '../vendor/includes/htmlburger/carbon-fields');) - Execute
yarn installin the root directory to install all build process requirements. - Execute
yarn buildto 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.