我想创建一个像
这样的链接标签
<link rel="next" href="localhost/site/posts/index" />
由cakephp 1.3代码。我需要将它放在head部分,但是从视图中定义它
我尝试过使用$ html-&gt; meta(),例如$ html-&gt; meta(“some title”,“localhost / site / posts / index”,array('inline'=&gt; false,' rel'=&gt;'next')),但我得到
<link title="some title" rel="next" type="application/rss+xml" href="localhost/site/posts/index">
,如果我试图摆脱类型或更改它,我只得到以下<meta rel="next">
,
我也尝试过$ html-&gt; css(),但是我无法删除/更改type =“text / css”part
由于
答案 0 :(得分:2)
将参数作为数组传递,这样就会跳过大部分自动魔法,第二个参数将作为内联选项:
$html->meta(array('rel' => 'next', 'link' => 'localhost/site/posts/index'), false);
刚刚使用CakePHP 1.3.15测试