// 产品详情页样式优化(无侧边栏,居中布局,大按钮)
add_action('wp_head', function() {
if (is_product()) {
echo '';
}
});
// 产品详情页图库样式增强(小图在大图下方,带间距)
add_action('wp_head', function() {
if (is_product()) {
echo '';
}
});
// 产品详情页完整样式(缩略图库、相关产品固定、移除底部链接)
add_action('wp_head', function() {
if (is_product()) {
echo '';
}
});
// 移除页脚可能出现的“近期文章”等链接
add_action('wp_footer', function() {
if (is_product()) {
echo '';
}
});
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/lighthouse/softwares/wordpress/wp-content/themes/zblled-final/functions.php:37) in /usr/local/lighthouse/softwares/wordpress/wp-includes/pluggable.php on line 1535
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/lighthouse/softwares/wordpress/wp-content/themes/zblled-final/functions.php:37) in /usr/local/lighthouse/softwares/wordpress/wp-includes/pluggable.php on line 1538