PHP code example of kyosifov / carbon-fields-urlpicker
1. Go to this page and download the library: Download kyosifov/carbon-fields-urlpicker library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kyosifov / carbon-fields-urlpicker example snippets
use Carbon_Fields\Container;
use Carbon_Fields\Field;
add_action( 'carbon_fields_register_fields', 'crb_url_picker_test' );
function crb_url_picker_test() {
Container::make( 'post_meta', 'URL Picker Test' )
->add_fields( array(
Field::make( 'urlpicker', 'crb_my_link', 'URL Picker Test' )
->set_help_text( "This is a test of the URL picker." )
));
}