未经测试,您可以尝试以下代码。如果首先将您的css注册为css woocommerce(您的主题可能已经准备好了),那么您可以在初始化时使用wp\\u enqueue\\u样式,如果它是一篇文章(is\\u single)。这对你有帮助吗?
function register_custom_stylesheets() {
wp_register_style( \'css-woocommerce\',
get_stylesheet_directory_uri() . \'/css/woocommerce.css\' );
}
function custom_stylesheet() {
if ( is_single() { // if is post type, except attachments and pages
wp_enqueue_style( \'css-woocommerce\' );
}
}
add_action( \'init\', \'register_custom_stylesheets\' );
add_action( \'wp_enqueue_scripts\', \'custom_stylesheet\' );