添加Woocommerce标题链接


Add Woocommerce Title to link

我在单个Woocommerce产品页面上有一个简单的链接,我需要将当前产品页面的标题添加到链接中作为参数,因此我有;

echo '<a href="http://example.com/movie-samples/sample?name=MOVIENAME" >ORDER A SAMPLE</a>';

如何将MOVIENAME替换为当前产品页面的标题?

谢谢!

$title = get_the_title();
echo '<a href="http://example.com/movie-samples/sample?name=' . $title . '" >ORDER A SAMPLE</a>';