我在PHP中是一個初學者,我試圖在php文件中定位3個文本輸出,並給它們一個獨特的類,以便我可以通過CSS來設計它們。在Woocommerce的PHP代碼中插入類
if (! defined('ABSPATH')) {
exit; // Exit if accessed directly
}
$customer_id = get_current_user_id();
if (! wc_ship_to_billing_address_only() && get_option('woocommerce_calc_shipping') !== 'no') {
$page_title = apply_filters('woocommerce_my_account_my_address_title', __('My Addresses:', 'woocommerce'));
$get_addresses = apply_filters('woocommerce_my_account_get_addresses', array(
'billing' => __('Billing Address:', 'woocommerce'),
'shipping' => __('Shipping Address:', 'woocommerce')
), $customer_id);
} else {
$page_title = apply_filters('woocommerce_my_account_my_address_title', __('My Address:', 'woocommerce'));
$get_addresses = apply_filters('woocommerce_my_account_get_addresses', array(
'billing' => __('Billing Address:', 'woocommerce')
), $customer_id);
}
$col = 1;
?>
我試圖以'我的地址:'以及'帳單地址:'和'送貨地址'爲目標。
我以前只使用過這一點,我從來不需要在php代碼中添加一個類,但肯定它是可能的,但我似乎無法找到任何信息在哪裏添加我的div類,p類等..
任何幫助將不勝感激!
非常感謝,
華雅國
對不起後期的後續行動,但我非常忙碌:)你的修復工作完美,感謝一百萬! 1A + – Vayaa