Guest User

Untitled

a guest
Oct 20th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_action( 'carbon_fields_register_fields', 'crb_attach_home_options');
  2.  
  3. function crb_attach_home_options() {
  4. Container::make( 'post_meta', 'Home' )
  5. ->where( 'post_id', '=', get_option( 'page_on_front' ) )
  6. ->add_fields( array(
  7. Field::make( 'text', 'a_text_field' ),
  8. ));
  9. }
Add Comment
Please, Sign In to add comment