Acf 图标选择器

问题描述 投票:0回答:2

我正在使用ACF图标选择器与氧气生成器和acf

问题是 Oxygen Builder 完全禁用了主题。

我已经尝试了ACF图标选择器中提到的这个过滤器,但它不起作用

<?php

add_filter('acf_icon_path_suffix',
  function ( $path_suffix ) {
    return 'wp-content/plugins/assets/img/acf/'; // After assets folder you can define folder structure
  }
);

我已经创建了一个包含上面子文件夹的文件,但不确定为什么过滤器不起作用。

谢谢

php wordpress advanced-custom-fields acfpro
2个回答
0
投票

ACF论坛

找到这个
// ACF ICON PICKER CONFIG

// modify the path to the icons directory
function acf_icon_path_suffix($path_suffix)
{
    return '/acf-icons/';
}
add_filter('acf_icon_path_suffix', 'acf_icon_path_suffix');
// modify the path to the above prefix
function acf_icon_path($path_suffix)
{
    return WP_CONTENT_DIR;
}
add_filter('acf_icon_path', 'acf_icon_path');

// modify the URL to the icons directory to display on the page
function acf_icon_url($path_suffix)
{
    return WP_CONTENT_URL;
}
add_filter('acf_icon_url', 'acf_icon_url');

0
投票

有一个新插件工作得很好,还与动态标签和灵活内容兼容(附带 Font Awesome 和 Elementor 自定义图标集):https://acfelementorcustomicons.com/

© www.soinside.com 2019 - 2024. All rights reserved.