在我的 wordpress 主题的 function.php 中使用此代码时,我收到此错误
似乎代码有两部分,我认为最后一个必须在“构造函数”内,但我不知道该怎么做。
function order_email_include_saler_name( $order ) {
$saler_id = dokan_get_seller_id_by_order( $order->id );
$saler_info = get_user_by( 'id', $saler_id );
?>
<table cellspacing="0" cellpadding="6" style="width: 100%; border: 1px solid #eee;" border="1" bordercolor="#eee">
<tfoot>
<tr>
<th scope="row" style="text-align:left; width: 57%; border: 1px solid #eee; <?php echo 'border-top-width: 4px;'; ?>"><?php _e( 'Saler Name:' ); ?></th>
<td style="text-align:left; border: 1px solid #eee; <?php echo 'border-top-width: 4px;'; ?>"><?php echo $saler_info->display_name; ?></td>
</tr>
</tfoot>
</table>
<?php
}
这是构造函数部分:
add_action( 'woocommerce_email_after_order_table', array( $this, 'order_email_include_saler_name' ) );
请问有人可以帮忙吗?我已经阅读了所有具有相同标题的帖子,但我不明白如何继续。我不是程序员,我不懂编码。