我正在使用自定义字段插件,但我没有看到 Repeater 字段
I am using Custom fields plugin but I do not see Repeater field in that
我在我的 wordpress 中使用自定义字段插件,但是当我在 "Field Group".
中添加新字段时,我看不到转发器字段
我想允许管理员从 wp 管理面板上传多张图片(任意数量的图片)。
我该怎么做?
ACF 插件的免费版本默认不提供中继字段。您需要升级到专业版。
Ypu 可以从这里获取专业版:
https://www.advancedcustomfields.com/add-ons/repeater-field/
没有中继字段的解决方案:
如果您想在不使用转发器插件的情况下执行此操作,请创建自定义 post 类型(使用 register_post_type) with name say 'customimage' and loop through them using WP_Query.
了解更多:
关于自定义 post 类型
http://www.wpbeginner.com/wp-tutorials/how-to-create-custom-post-types-in-wordpress/
关于 ACF 转发器字段:
我在我的 wordpress 中使用自定义字段插件,但是当我在 "Field Group".
中添加新字段时,我看不到转发器字段我想允许管理员从 wp 管理面板上传多张图片(任意数量的图片)。
我该怎么做?
ACF 插件的免费版本默认不提供中继字段。您需要升级到专业版。
Ypu 可以从这里获取专业版:
https://www.advancedcustomfields.com/add-ons/repeater-field/
没有中继字段的解决方案:
如果您想在不使用转发器插件的情况下执行此操作,请创建自定义 post 类型(使用 register_post_type) with name say 'customimage' and loop through them using WP_Query.
了解更多:
关于自定义 post 类型
http://www.wpbeginner.com/wp-tutorials/how-to-create-custom-post-types-in-wordpress/
关于 ACF 转发器字段: