Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我要拿
$imgsrc = get_template_directory_uri() . '/s.php?strings=';
并the_content_rss('', TRUE, '', 4)在字符串之后添加。
the_content_rss('', TRUE, '', 4)
我该怎么做呢?
$imgsrc = get_template_directory_uri() . '/titles.php?strings=' . the_content_rss('', TRUE, '', 4);
似乎没有输出单个 URL。
你应该明白的第一件事是
字符串连接需要返回值而不是输出/回显它们的函数。
因此,请确保get_template_directory_uri()并the_content_rss('', TRUE, '', 4);返回一个值而不是显示它们。如果两个函数都返回一个值,则 URL 应该按预期构建。
get_template_directory_uri()
the_content_rss('', TRUE, '', 4);