0
我試圖做一個按鈕打開從最終的短代碼插件短代碼。 這是我的例子:按鈕onclick打開wordpress短代碼
<button id="showInfo" onclick="showInfo()">Video</button>
的javascript:
var infoSC = '[su_lightbox_content id="showInfo"]Inline content[/su_lightbox_content]';
function showInfoSC(){
return infoSC;
}
我想根據帖子的內容(先進的自定義字段)
<?php the_field('info'); ?>
打開ligtbox哪有我讓這個工作?
這是不是很清楚你想要什麼。當你點擊那個按鈕時,你期望發生什麼?彈出式模態?另外爲了運行短代碼,你需要一個php函數'do_shortcode('[shortcode_here]')' – CiprianD