我正在尝试在WordPress中输出带有短码功能的HTML / PHP。 我的问题是语法,我需要在输出中混合HTML和PHP。但是我不知道如何正确分离它。
function email_shortcode() {
return '<a class="email" href="mailto:jobs@company.com?Subject='echo get_field("jo-title") get_field("jo-location")'">Email us</a>';
}
add_shortcode('email', 'email_shortcode');
有人对返回的输出有适当的解决方案吗?
答案 0 :(得分:1)
您的代码应如下所示。
numpy.testing