每个类别列表中的第一项不是链接

时间:2011-11-08 作者:The Citizen

在上一次更新插件“列出类别帖子”后,每个类别下的第一个帖子项只是文本,没有链接。此请求是在插件作者的请求下根据插件相关的帮助文件提出的,作为从插件作者那里获取答案的手段。

请参见此处的示例:http://oneangrycitizen.me/categories/

因此,类别链接起作用,但帖子链接在第一个链接上不起作用。。。

1 个回复
最合适的回答,由SO网友:Fernando Briano 整理而成

第一个链接显示不正确,因为有一个带有“sign.On line 60 of ListCatDisplayer.php,there a error”的错误:

$this->lcp_output .= \'<\' . $tag;
        if (isset($this->params[\'class\'])): $this->lcp_output .= \' class="\' . $this->params[\'class\']; endif;
        $this->lcp_output .= \'">\';
如您所见,我总是在关闭标记时添加“when closing the tag。因此,这产生了:enter image description here如果您指定了一个类并添加了更多参数,则“错误”会导致整个标记错误。

我已将其修改为在班级行中添加“仅限”:

$this->lcp_output .= \'<\' . $tag;
        if (isset($this->params[\'class\'])): $this->lcp_output .= \' class="\' . $this->params[\'class\'] . \'"\'; endif;
        $this->lcp_output .= \'>\';
它在版本0.20.2中已修复,现在可以进行更新。很抱歉给您带来不便,也很抱歉您在评论中没有得到太多帮助。这里的用户通常更友好。

结束

相关推荐

每个类别列表中的第一项不是链接 - 小码农CODE - 行之有效找到问题解决它

每个类别列表中的第一项不是链接

时间:2011-11-08 作者:The Citizen

在上一次更新插件“列出类别帖子”后,每个类别下的第一个帖子项只是文本,没有链接。此请求是在插件作者的请求下根据插件相关的帮助文件提出的,作为从插件作者那里获取答案的手段。

请参见此处的示例:http://oneangrycitizen.me/categories/

因此,类别链接起作用,但帖子链接在第一个链接上不起作用。。。

1 个回复
最合适的回答,由SO网友:Fernando Briano 整理而成

第一个链接显示不正确,因为有一个带有“sign.On line 60 of ListCatDisplayer.php,there a error”的错误:

$this->lcp_output .= \'<\' . $tag;
        if (isset($this->params[\'class\'])): $this->lcp_output .= \' class="\' . $this->params[\'class\']; endif;
        $this->lcp_output .= \'">\';
如您所见,我总是在关闭标记时添加“when closing the tag。因此,这产生了:enter image description here如果您指定了一个类并添加了更多参数,则“错误”会导致整个标记错误。

我已将其修改为在班级行中添加“仅限”:

$this->lcp_output .= \'<\' . $tag;
        if (isset($this->params[\'class\'])): $this->lcp_output .= \' class="\' . $this->params[\'class\'] . \'"\'; endif;
        $this->lcp_output .= \'>\';
它在版本0.20.2中已修复,现在可以进行更新。很抱歉给您带来不便,也很抱歉您在评论中没有得到太多帮助。这里的用户通常更友好。

相关推荐

每个类别列表中的第一项不是链接 - 小码农CODE - 行之有效找到问题解决它

每个类别列表中的第一项不是链接

时间:2011-11-08 作者:The Citizen

在上一次更新插件“列出类别帖子”后,每个类别下的第一个帖子项只是文本,没有链接。此请求是在插件作者的请求下根据插件相关的帮助文件提出的,作为从插件作者那里获取答案的手段。

请参见此处的示例:http://oneangrycitizen.me/categories/

因此,类别链接起作用,但帖子链接在第一个链接上不起作用。。。

1 个回复
最合适的回答,由SO网友:Fernando Briano 整理而成

第一个链接显示不正确,因为有一个带有“sign.On line 60 of ListCatDisplayer.php,there a error”的错误:

$this->lcp_output .= \'<\' . $tag;
        if (isset($this->params[\'class\'])): $this->lcp_output .= \' class="\' . $this->params[\'class\']; endif;
        $this->lcp_output .= \'">\';
如您所见,我总是在关闭标记时添加“when closing the tag。因此,这产生了:enter image description here如果您指定了一个类并添加了更多参数,则“错误”会导致整个标记错误。

我已将其修改为在班级行中添加“仅限”:

$this->lcp_output .= \'<\' . $tag;
        if (isset($this->params[\'class\'])): $this->lcp_output .= \' class="\' . $this->params[\'class\'] . \'"\'; endif;
        $this->lcp_output .= \'>\';
它在版本0.20.2中已修复,现在可以进行更新。很抱歉给您带来不便,也很抱歉您在评论中没有得到太多帮助。这里的用户通常更友好。

相关推荐