我試圖在字符串中添加一個函數,以通過簡碼顯示函數的輸出,但它顯示錯誤。在變量字符串中添加函數
function foo_shortcode($atts, $content = null) {
$datashortcode = '<div>'
.if(function_exists('rtb_kk'))
{
rtb_kk();
}.
'</div>'
;
return $datashortcode;
}
add_shortcode('showfoo', 'foo_shortcode');
我在哪裏犯錯?
你根本無法做到這一點。這是語法錯誤。 –
這麼多的語法錯誤,首先閱讀一些關於PHP的教程,然後寫一個插件到wordpress :) – jamek