0

我想创建一个链接标签

<link rel="next" href="localhost/site/posts/index" />

通过 cakephp 1.3 代码。我需要把它放在头部,但是从视图中定义它

我试过使用 $html->meta(),比如 $html->meta("some title", "localhost/site/posts/index", array('inline' => false, 'rel' => 'next ') ) ,但我明白了

<link title="some title" rel="next" type="application/rss+xml" href="localhost/site/posts/index">

,如果我尝试摆脱类型或更改它,我只会得到以下内容<meta rel="next">,我也尝试过 $html->css(),但我无法删除/更改 type="text/css" 部分

谢谢

4

1 回答 1

2

将参数作为数组传递,这样会跳过大部分自动魔术,第二个参数将充当内联选项:

$html->meta(array('rel' => 'next', 'link' => 'localhost/site/posts/index'), false);

刚刚用 CakePHP 1.3.15 测试过

于 2012-10-07T15:20:53.763 回答