Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 3, 2018 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/9217413bbc0dac9a591cdd8d59b7346b to your computer and use it in GitHub Desktop.
Save billerickson/9217413bbc0dac9a591cdd8d59b7346b to your computer and use it in GitHub Desktop.
<?php
Container::make( 'post_meta', 'Page Options' )
->where( 'post_type', '=', 'page' )
->where( 'post_id', '!=', get_option( 'page_on_front' ) )
->add_fields( array(
Field::make( 'image', 'ea_header_image', 'Header Image' ),
Field::make( 'textarea', 'ea_header_content', 'Header Content' ),
Field::make( 'checkbox', 'ea_disable_footer_form', 'Disable Form in Footer' ),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment