How to call CSS class on a CakePHP Html->link?

后端 未结 4 623
囚心锁ツ
囚心锁ツ 2020-12-16 20:47

I am a complete noob to programming and CakePHP all together, so please be patient. How am I supposed to call the CSS on this Html->link:



        
4条回答
  •  一生所求
    2020-12-16 20:57

    Not sure what you mean by "call the css", I think you want to add a class to this link? IF that's the case you can just add another array as an argument and it will turn key =? value into HTML attributes. EG:

    echo $this->Html->link(__('Blogs', true), array('controller' => 'posts', 'action' => 'index'), array('class' => 'my-class'));
    

    This is all explained in the CakePHP docs.

提交回复
热议问题