-3

我是 php 的新手,刚开始学习它,同时使用 wordpress。

我想将 html 代码添加到 php 变量中,实际上是一个锚标记链接。首先,我使用 拆分文本substr(),现在我想在帖子末尾附加一个锚标记。

$json['timeline']['date'][$i]['text'] =  substr(strip_tags($post->post_content), 0, 400)+"<a href='#'>Read more..</";

好吧,我相信这不是正确的方法。谁能指导我?

4

2 回答 2

4

用于.在 PHP 中附加字符串。并且不要忘记关闭该标签:

$json['timeline']['date'][$i]['text'] = substr(strip_tags($post->post_content), 0, 400) . "<a href='#'>Read more..</a>";

请注意,一个例外是echo,它允许您传递以逗号分隔的参数:

echo "one", "two", "three";

这具有边际时间优势,但不要因此而这样做(以避免过早优化)。实际上,.请在任何地方使用,以防您最终将其更改echoreturn.

最后,有一种更简单的方法可以将自定义链接添加到您可能想要查看的 Wordpress 摘录中:

http://codex.wordpress.org/Customizing_the_Read_More

于 2013-01-11T12:27:55.530 回答
1

在php中,您可以像这样

$var = "any value"."<a href='example.com'>link</a>";
于 2013-01-11T12:29:56.737 回答