我自己并不使用ACF,但您基本上需要做的是能够向图像添加一系列标记。这里有一个教程解释了如何使用ACF进行此操作:https://www.greengeeks.ca/tutorials/article/add-custom-fields-to-media-wordpress/
然后,您需要使用ACF将“图像标签”添加到艺术家配置文件中。您可以使用它将艺术家与他们的照片重新结合起来。
那么让我们为你的艺术家\'gallery-tag\' = \'alice-dutton\'
.
然后在上传图像时填写\'artist-tags\' = \'alice-dutton\'
.
两位艺术家?\'artist-tags\' = \'alice-dutton\', \'steve-buscemi\'
基本上是页面、帖子、类别和标签slugs
工作
一旦您以适合您的方式进行了设置,在“实际艺术家”页面上,您就必须对具有artist-tag
这和艺术家们很相配gallery-tag
.
作为标准的WP\\U查询,它如下所示:
$gallery_tag = get_post_meta( $post->ID, \'gallery-tag\', true ); //this would get \'alice-dutton\'
$gallery_qquery = new WP_Query( array(
\'post_type\' => \'attachement\',
\'posts_per_page\' => -1, //gets all of them
\'meta_query\' => array(
array(
\'key\' => \'artist-tag\',
\'value\' => $gallery_tag
)
),
) );
然后运行输出
$gallery_query
.
您必须仔细阅读ACF和Elementor文档,以确定具体的操作方法-我从未与其中任何一个构建过完整的项目,并且与他们合作过非常、非常少的次数。但从我的阅读来看,这应该不是问题。