我需要将我的元盒信息发送到函数-该元已在页面模板上调用
$meta = get_post_meta(get_the_ID())
但我需要在函数中使用这些数据
元盒大约有20个,包含不同的信息(字符串、数组、多维数组等)
For best WordPress performance which is better option - 将所有元发送到函数(案例1)或仅发送帖子的ID并在函数内部再次调用元(案例2),还是等于?
案例1
somefunction($meta);
案例2//page.php
somefunction(get_theID());
//functions.php
somefunction($id){
$meta = get_post_meta($id);
//rest of the code handling the meta
}