Advertisement
sumakaki

carbon fields

Dec 7th, 2020 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. <?php
  2. use Carbon_Fields\Container;
  3. use Carbon_Fields\Field;
  4.  
  5. add_action( 'carbon_fields_register_fields', 'crb_attach_theme_options' );
  6. function crb_attach_theme_options() {
  7.     Container::make( 'theme_options', 'Мои настройки' )
  8.         ->add_fields( array(
  9.             Field::make( 'text', 'crb_text', 'Text Field' ),
  10.         ) );
  11. }
  12.  
  13.  
  14.  
  15.  
  16. add_action( 'after_setup_theme', 'crb_load' );
  17. function crb_load() {
  18.     require_once( 'vendor/autoload.php' );
  19.     \Carbon_Fields\Carbon_Fields::boot();
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement