在业余时间,我正在努力创建一家创业公司。但不熟悉PHP。自定义代码时,我遇到了以下问题:
我只想在我的页面上添加产品价格背后的回声“包括运费”。但是现在“包括运费”的回声是应用了class =“price”的css,我希望我的自定义回声是一个正常的段落,并保持class =“price”到价格。两人必须互相支持。
代码如下所示:
<p class="price"><?php echo $product->get_price_html(); ?> <?php $customshippingtext = " Including shipping "; echo $customshippingtext; ?> </p>
猜测它真的很容易,并希望我有时间潜入PHP因为我可能能够弄明白。现在只需要快速解决方案..
提前非常感谢!
亲切的问候,
Brum的
答案 0 :(得分:2)
在p标签中使用另一个类的span,如下所示:
<p class="price"><span class="another-class"> </span></p>
答案 1 :(得分:0)
回声跨度,自定义类,以及css样式,如你所愿。
<p class="price"><?php echo $product->get_price_html(); ?> <?php $customshippingtext = " Including shipping "; echo '<span class="othertxt">'.$customshippingtext.'</span>'; ?> </p>
或者您可以使用内联样式正确设置样式
<p class="price"><?php echo $product->get_price_html(); ?> <?php $customshippingtext = " Including shipping "; echo '<span class="othertxt" style="color: black;">'.$customshippingtext.'</span>'; ?> </p>