我正在尝试从我的WordPress插件之一修改自定义布局。
下面的%1s和%2s我想包装一下以添加一个类,以便可以为该元素添加一些样式,但是不确定如何做到这一点
<?php if (!is_quote()) : ?>
<p><?php echo sprintf(__('We have sent you invoice %1s with a balance of %2s.', ud_get_wp_invoice()->domain), invoice_id(array('return' => true)), balance_due(array('return' => true))); ?></p>
<?php endif; ?>
我已经尝试过分手并增加跨度:
<?php echo sprintf(__('We have sent you invoice' <span>'%1s'</span> 'with a balance of' <span>'%2s'</span>'.', ud_get_wp_invoice()->domain)...
但不高兴,我从未尝试过这种方法,所以不确定我有什么选择