ACF - 选项页面挂钩(Wordpress)

时间:2015-01-03 14:12:27

标签: wordpress action hook advanced-custom-fields

我真的大量使用ACF的选项页面和转发器字段。 为了减少查询量(从大约500到80),我在Wordpress Transient API的帮助下缓存了一些字段输出。

我知道ACF选项页面的钩子是:

add_action( 'acf/save_post', 'reference_function') ); 

但问题是,我有多个选项页面。当保存任何选项页面时,我不希望所有功能都运行...

这些是我当前的选项页面

add_filter('acf/options_page/settings', 'my_acf_options_page_settings');
if(function_exists("register_options_page")) {
        acf_add_options_page();
        register_options_page('Spielübersicht');
        register_options_page('Mannschaft');
        register_options_page('SCHWALBE arena TV');
        register_options_page('Sponsoren');
        register_options_page('Werbung');
        register_options_page('Einstellung');
        register_options_page('Fanclubs');
        register_options_page('Sidebar');
    }

有没有办法过滤动作,以便仅在保存相关选项页面时创建我的瞬变?

1 个答案:

答案 0 :(得分:6)

幸运的是,我能够解决我的问题! 在插件的支持论坛中查看我的代码: http://support.advancedcustomfields.com/forums/topic/acfsave_post-for-specific-options-page/

function clear_advert_main_transient() {
    $screen = get_current_screen();
    if (strpos($screen->id, "acf-options-adverts") == true) {
        delete_transient('advert_main_transient1');
        delete_transient('advert_main_transient2');
        delete_transient('advert_main_transient3');
    }
}
add_action('acf/save_post', 'clear_advert_main_transient', 20);