This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for p in "debug-bar" "debug-bar-console" "autodescription" "AJAX Thumbnail Rebuild" "Duplicate Post" "https://github.com/roots/soil/archive/master.zip" "carbon-fields"; do wp plugin install "$p" --activate; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Carbon_Fields\Container; | |
use Carbon_Fields\Field; | |
use Carbon_Fields\Field\Complex_Field; | |
Container::make( 'post_meta', 'Page Builder' )//PAGE BUILDER FIELDS | |
->show_on_post_type('page') | |
->add_fields( array( | |
Field::make( 'complex', 'crb_layouts' ) | |
->set_layout('tabbed-vertical') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Carbon_Fields\Container; | |
use Carbon_Fields\Field; | |
use Carbon_Fields\Field\Complex_Field; | |
Container::make( 'post_meta', 'Page Builder' )//PAGE BUILDER | |
->show_on_post_type( array('page','location','post') ) | |
->add_fields( array( |
NewerOlder