我希望只有注册ID:加粗。我尝试在单独的引号之前和之后插入<b>
标记,但它打破了所有内容。
<p><?php printf( __( 'Registration ID: %s', 'woocommerce' ), $order->get_order_number() ); ?></p>
答案 0 :(得分:3)
您可以使用printf格式的粗体标记。
<p><?php printf('<b>Registration ID:</b> %s', '124125'); ?></p>