0

我要拿

$imgsrc = get_template_directory_uri() . '/s.php?strings=';

the_content_rss('', TRUE, '', 4)在字符串之后添加。

我该怎么做呢?

$imgsrc = get_template_directory_uri() . '/titles.php?strings=' . the_content_rss('', TRUE, '', 4);

似乎没有输出单个 URL。

4

1 回答 1

0

你应该明白的第一件事是

字符串连接需要返回值而不是输出/回显它们的函数。

因此,请确保get_template_directory_uri()the_content_rss('', TRUE, '', 4);返回一个值而不是显示它们。如果两个函数都返回一个值,则 URL 应该按预期构建。

于 2013-03-18T01:35:48.553 回答