我在插件中从ACF插件接收数据时遇到了一些问题。 我使用owl carousel来显示幻灯片,但我想为每个图像添加一些额外的文本字段。
我在ACF中创建了2个字幕字段,并将它们链接到猫头鹰旋转木马的帖子类型。
实现了Owl Carousel主要php文件中的字段,如下所示:
$caption1 = get_field('owl_caption1');
$caption2 = get_field('owl_caption2');
$loop = new WP_Query($args);
while ($loop->have_posts()) {
$loop->the_post();
$the_url = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), $type);
$result .='<div class="item"><img title="' . get_the_title() . '" src="' . $the_url[0] . '" alt="' . get_the_title() . '"/><p>'.$caption1.'</p><p>'.$caption2.'</p></div>';
我还在此文档的顶部添加了include行(plugins / owl-carousel / owlcarousel.php)来接收日期,但是当我填写他们没有显示的字段时
include_once('advanced-custom-fields/acf.php' );
ACF的常见问题表明你需要在主题中包含文件(themes / themename / advanced-custom-fields)或插件(plugins / owl-carousel / advanced-customfields),所以我尝试将acf文件夹复制到我的主题文件夹和猫头鹰Carousel插件文件夹,但我似乎无法接收数据。
提前致谢!