Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // enable alb on custom post types
- add_filter('avf_builder_boxes','enable_boxes_on_posts');
- function enable_boxes_on_posts($boxes) {
- $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio', 'page', 'galleries', 'projects', 'catalogues', 'portfolios'), 'context'=>'normal', 'expandable'=>true );
- $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('portfolio', 'page', 'galleries', 'projects', 'catalogues', 'portfolios'), 'context'=>'side', 'priority'=>'low');
- $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('portfolio', 'page', 'galleries', 'projects', 'catalogues', 'portfolios'), 'context'=>'normal', 'priority'=>'high' );
- return $boxes;
- }
Advertisement
Add Comment
Please, Sign In to add comment