cakephp - Class in menu link -
i have code menu in app, , need add class type one.
<?php echo $this->html->link('home page', array('controller'=>'pages','action'=>'home_page'), array('escape'=> false)).' | '; ?>
can me please? how can add it?
try this
$this->html->link('home page', array('controller'=>'pages','action'=>'home_page'),array('escape'=>false ,'class'=>'yourclass'));
Comments
Post a Comment