我想在wordpress中添加php短代碼(<?php echo do_shortcode('[shortcode_id="1"]') ?>
)。在我的joomla中添加短代碼
有沒有辦法做到這一點?請幫幫我 。
我想在wordpress中添加php短代碼(<?php echo do_shortcode('[shortcode_id="1"]') ?>
)。在我的joomla中添加短代碼
有沒有辦法做到這一點?請幫幫我 。
你可以使用DirectPHP這是一個插件,可以直接在Joomla內容頁面內嵌入PHP命令!
如果你不想使用您可以使用此代碼(爲Joomla 3.x的)任何擴展:
$params = new JObject;
$article = new stdClass;
$article->text = '------> Write/Assign here the text with shortcodes <-----';
JPluginHelper::importPlugin('content');
$dispatcher = JEventDispatcher::getInstance();
$dispatcher->trigger('onContentPrepare', array('text', &$article, &$params, 0));
echo $article->text;
謝謝你,你幫了我 – Marina