我在单个Woocommerce产品页面上有一个简单的链接,我需要将当前产品页面的标题添加到链接作为参数,所以我有;
echo '<a href="http://example.com/movie-samples/sample?name=MOVIENAME" >ORDER A SAMPLE</a>';
如何将MOVIENAME替换为当前产品页面的标题?
谢谢!
答案 0 :(得分:1)
$title = get_the_title();
echo '<a href="http://example.com/movie-samples/sample?name=' . $title . '" >ORDER A SAMPLE</a>';