Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- use Carbon_Fields\Container;
- use Carbon_Fields\Field;
- add_action( 'carbon_fields_register_fields', 'crb_attach_theme_options' );
- function crb_attach_theme_options() {
- Container::make( 'theme_options', 'Мои настройки' )
- ->add_fields( array(
- Field::make( 'text', 'crb_text', 'Text Field' ),
- ) );
- }
- add_action( 'after_setup_theme', 'crb_load' );
- function crb_load() {
- require_once( 'vendor/autoload.php' );
- \Carbon_Fields\Carbon_Fields::boot();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement