我的自定义函数会检索每个送货方式ID(ex flat_rate:3
)
我需要通过id检索方法标题(如下图所示,我需要:
快速发货
根据该文档,我发现WC_Shipping_Method::get_method_title()
但我无法通过ID检索。
另见发货方法标签存储在wp_options
表中option_id
,因此无法设置SQL请求。
有什么办法吗?
答案 0 :(得分:5)
更新2 (简化功能代码)
要从其完整的ID(方法费率ID)中检索送货方法标题,可以使用该简单轻量级的自定义功能完成:
<div class="a">
<div class="b">
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
<div class="c">
<table>
<tbody>
<tr>
<td>x x x x x</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。
经过测试和工作。
使用示例 (输出送货方式标题):
function get_title_shipping_method_from_method_id( $method_rate_id = '' ){
if( ! empty( $method_rate_id ) ){
$method_key_id = str_replace( ':', '_', $method_rate_id ); // Formating
$option_name = 'woocommerce_'.$method_key_id.'_settings'; // Get the complete option slug
return get_option( $option_name, true )['title']; // Get the title and return it
} else {
return false;
}
}
它将显示您的自定义送货方式标题