wordpress apply_filter在同一个函数上

时间:2017-08-18 20:04:41

标签: php wordpress wordpress-hook

我在wordpress主题中找到了一个代码段

function jm_resume_custom_fields_prefix() {
        return apply_filters( 'jm_resume_custom_fields_prefix', '_noo_resume_field_' );
    }

上述代码的含义是什么?应用过滤器如何在此上下文中工作?

1 个答案:

答案 0 :(得分:1)

动作/过滤器标签和功能位于不同的名称空间中。这意味着当执行函数jm_resume_custom_fields_prefix()时,所有过滤器都绑定到标签“jm_resume_custom_fields_prefix”' (通过add_filter(' jm_resume_custom_fields_prefix',...)被应用。命名与动作/过滤器标签相同的动作/过滤器功能的约定在WordPress中被大量使用。