当替换自定义字段输出时,如何挂钩过滤器以捕获get_post_meta?
我已经在帖子中填充了一个自定义字段(元数据),如下所示:
<!--:de-->Nominale spanning<!--:--><!--:zh/cn-->额定电压<!--:--><!--:en-->Arrester Accessories<!--:-->
我需要翻译此输出,因此我想知道如何在元数据输出之前连接到“ get_post_meta”。
这是我几天尝试过的,但是没有运气。
function getqtlangcustomfieldvalue($metadata, $object_id, $meta_key, $single){
$fieldtitle="fields_titles";
if($meta_key==$fieldtitle&& isset($meta_key)){
//here is the catch, but no value has been passed
}
}
//Specify 4 arguments for this filter in the last parameter.
add_filter('get_post_metadata', 'getqtlangcustomfieldvalue', 10, 4);
2
你在做什么应该工作。尚未传递什么“价值”?
—
s_ha_dum 2013年