이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Advanced Custom Fields Page Builder

설명

PLEASE NOTE: The following plugins or add-ons are required for this to work:

The ACF Page Builder uses the Advanced Custom Fields Flexible Content field to create a bunch of completely customisable page elements. This plugin works best when used with Bootstrap, but it isn’t essential. These elements include:

  • Banner images
  • Buttons
  • Bootstrap Content Grids
  • Image Gallery (with text and caption)
  • Raw HTML and JavaScript
  • Simple Contact Forms
  • WYSIWYG Content

Each element can be configured – see the screenshots for configuration options. Default options are background colours, wrapper classes and if the element needs to be contained (Bootstrap only!) Please get in touch or submit pull requests for any more page sections.

The ACF Page Builder was created and is managed by Big Lemon Creative.

환경설정

To configure which post types or page templates the page builder is displayed on, use the following filter in your functions.php file:

function support_acfpb( $support = array() ) {

    $support['post_type'] = array(
        'page',
        'post'
    );

    $support['page_template'] = array(
        'page-templates/page-sectioned.php'
    );

    return $support;

}
add_filter('acfpb_set_locations', 'support_acfpb', 10, 1);

사용방법

We designed the functions to match the ACF syntax of get_field() and the_field(). Use the functions below to get or directly echo the sections on the front end. The ID is optional.

the_sections( $id );

또는

echo get_sections( $id );

스크린샷

  • All sections collapsed
  • Banner section options
  • Button section options
  • Content Grid section options
  • Gallery section options
  • Raw HTML section options
  • Simple Contact Forms section options
  • WYSIWYG section options
  • Full Page of created sections

설치

Install the plugin by following these steps:

  1. Upload the acf-page-builder folder to the /wp-content/plugins/ directory
  2. WordPress의 ‘플러그인’ 메뉴에서 플러그인을 활성화하세요.
  3. Check out the settings page to create some fields and see how to include it in your theme

The plugin can also be searched for and installed directly in the WordPress Plugin manager.

Make sure that you have Advanced Custom Fields installed.

FAQ

Can I ask you a question?

Yes. Head over to the GitHub page with any questions or feature requests. You might also find your answer in the support tab. Feel free to contact us if you can’t find an answer, or reach us on Twitter.

후기

2016년 9월 3일 답글 1개
Hey! It is nice to see someone getting this a go. I ve seen some prototypes on the net and would like to see this become a must to install add-on to ACF. I would look in to this https://bitbucket.org/dachcom/dachcom-page-designer/overview Good luck!
모든 2 평가 읽기

기여자 & 개발자

“Advanced Custom Fields Page Builder”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Advanced Custom Fields Page Builder”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

v1.1.4

  • Remove ID as an option to call the sections – doesn’t work
  • The container is now disabled if Bootstrap is not selected
  • Tested up to 4.6.1

v1.1.3

  • Fixed the containment and bootstrap toggle – wasn’t working!

v1.1.2

  • Changed contributors and some house keeping

v1.1.1

  • The very first version! Includes the following sections: banners, buttons, content grid, galleries, raw HTML, normal WYSIWYG text and simple contact form integration