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

Easy ACF Connect For Themer

설명

Description

Easily connect ACF fields in Beaver Themer. No need to remember the fieldnames, easily select from the dropdown. It returns all fieldnames, across all fieldgroups.

Easy ACF Connect for Themer also supports ACF Fields on the current post, another post, user_id, tax_termid or even from your ACF Options pages.

Select the Easy ACF Connector… Then simply select the fieldname.

Using the Conditional Logic filter

Easy ACF Connect for Themer also supports adding conditional rules using ACF Fields on the current post or from your ACF Options pages. For that select either “Easy ACF Field” or “Easy ACF Option Field”.

Supported fieldtypes:

  • color-picker
  • date-picker
  • date-time-picker
  • email
  • file
  • flexible content
  • gallery
  • group
  • image (array, url or image ID)
  • link
  • message
  • number
  • page link
  • password
  • post object
  • checkbox
  • radio
  • range
  • relationship
  • repeater
  • taxonomy
  • select
  • text
  • textarea
  • time_picker
  • true_false
  • url
  • user
  • wysiwyg

Please note that field support means that it will return the ACF-value as a variable (object, array, string or number). It’s up to the module to handle the returned variable.

Adding support for more fieldtypes in list

If you use any third party or custom fieldtypes for ACF ( which can be found on https://awesomeacf.com ) you can add those using a filter in your function.php:

add_filter( 'easy_acf_accepted_acf_field_types' , 'my_custom_add_acf_field_types' );

/**
 * Callback that adds one or more fieldtypes to the the easy_acf_accepted_field_types filter
 * @param  {array} $fieldtypes array with name->value, label->value pairs
 * @return {array}
 * @since 1.0.0
 */
function my_custom_add_acf_fieldtypes( $fieldtypes ) {
    $new_fieldtypes =  array(
            array( 'name' => 'custom_fieldtype'         , 'label' => 'Custom Field Type' ),
        );

    $fieldtypes = array_merge( $fieldtypes , $new_fieldtypes );
    return $fieldtypes;
}

Conditional Rules for 3rd party fieldtypes

There is currently no support or way to extend for 3rd party fieldtypes using the conditional rules. This means that you won’t be able to pick fieldtypes based on the type. Use the conditional rules provided by Beaver Themer instead, but you will need to enter the fieldname manually.

version history:

v1.1.5

bugfix: added permission_callback to rest request

v1.1.4

added checkbox fieldtype to Beaver Builder conditional rules, it was missing.

v1.1.3

added all remaining fieldtypes (flexible content, group, repeater, page link, post object, relationship, taxonomy, user)

v1.1.2

added Conditional Logic settings

v1.1.1

added image-size on image fields, tweaked the code, changed way to test for acf 4/5, fixed save_format/return_format for acf 4/5, added textdomain and .pot file

v1.0.0

image and gallery field support

스크린샷

후기

2019년 3월 1일
Themer shortcode's ACF support is limited to some fields, this plugin largely extends the supports to many ACF fields. For instance, it allows to output an ACF Color Picker field with a Themer shortcode, which Themer can't do out of the box. Well done!
2019년 1월 19일
Thank you for this plugin! It's quite a time saver and is super useful to me as I am the king of typos! Seems like a no-brainer that this would be in the core of themer.
2019년 1월 19일
Thanks Didou for this great add-on. But in my opinion this should be in the core of Themer. I asked the BB guys a couple of times, until now they did not. So thanks, this one will for sure help many of us.
모든 5 평가 읽기

기여자 & 개발자

“Easy ACF Connect For Themer”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Easy ACF Connect For Themer”(을)를 번역하세요.

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

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