shortcode 是 WordPress 一個很方便的功能,提供不會寫 code 的人也可以透過 shortcode 把特定功能加到文章內,而如果要在 WordPress 的 php 樣板內使用 shortcode,則可以透過 do_shortcode() 這個函式。
do_shortcode( string $content, bool $ignore_html = false )
也就是說我們要嵌入一段 shortcode 是 [contact-form-7 id="91" title="quote"] 的話,在 php 內要這樣撰寫就好:
echo do_shortcode( '[contact-form-7 id="91" title="quote"]' );