2015-12-02 107 views

回答

1

如果你不想使用您可以使用此代码(为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;