你的$description 显示,因为您在中连接了它是您的条件
$description = \'
\' . sprintf( __( "To check if this item qualifies for a discount %s an account."), \'\' . __("Log In or Create") . \'\' ) . \'
\' . $description;
下面的代码有帮助吗?
add_filter( \'woocommerce_short_description\', \'add_text_before_short_description_for_guests\' );
function add_text_before_short_description_for_guests( $description ) {
// Only for guest users
if ( ! is_user_logged_in() ) {
$description = sprintf( __( "To check if this item qualifies for a discount %s an account.", \'your_textdomain\' ), \'\' . __( "Log In or Create", \'your_textdomain\' ) );
}
return $description;
}
不要忘记添加你自己的或你的主题(我不知道)文本域来轻松翻译你的作品。