我在我的网站上使用 Joomla CMS 并且我已经下载了k2
插件。
有一些 PHP 代码我无法理解如何拆分,以便我可以按照我想要的方式对其进行样式设置。
<?php echo ($this->row->published > 0) ? JText::_('K2_YES') : JText::_('K2_NO'); ?>
我只想要“是”和“不”。
Joomla JText class pull text from language file so JText::_('K2_YES') returns a text. Now you may separate or style your returned text as you want.
<?php
if($this->row->published > 0){
echo JText::_('K2_YES');
//style as u want '<h1>'.JText::_('K2_YES').'</h1>' etc.
}else{
echo JText::_('K2_NO');
}
?>