如何在自定义 post 类型上使用 Woocommerce 的二级图像上传元数据框?

How can I use the Secondary Images Upload Metabox from Woocommerce on a Custom post type?

Woocommerce 带有用于上传多张图片的元数据框,称为产品图片库。

这些是次要图像。

如何在自定义 post 类型上使用它?

  1. 安装以下插件 Featured Galleries

  2. 现在编辑文件controller.php

  3. 此文件位于

    Your-wordpress-installation/wp-content/plugins/featured-galleries/includes

  4. 替换以下代码

    apply_filters('fg_post_types',['post','page']);

  5. apply_filters('fg_post_types',['post','page','your_post_type']);

  6. 如果post类型太多

    apply_filters( 'fg_post_types', ['post', 'page','your_post_type_1','your_post_type_2','your_post_type_2' ] );

  7. 注意:将 your_post_type 替换为您的 post_type