你没有透露太多细节,但我会尽我所能。
实现这一点的最佳方法是直接通过PHP实现(无需jQuery)。因此,假设产品标题通过the_title()
之间<h1>
标签,例如:
<h1><?php the_title(); ?></h1>
然后我将添加以下伪代码,如下所示:
<h1><?php the_title(); ?>
<span>
<?php
if (promo-price exists) {
// 1. Code to get promo price and promo code from DB
$promo_price = Somehow get from DB;
$promo_code = Also get from DB;
// 2. Code to display text
$price_details = sprintf(\' - $%d with promo code: %s\', $promo_price, $promo_code);
echo $price_details;
}
?>
</span>
</h1>
请记住,这是伪代码,您必须根据需要进行修改。