0

我正在使用 Wordpress 插件来显示帖子标签的 Google 新闻提要。

我试图把这个:

<?php echo strip_tags(get_the_tag_list('','+','')); ?>

进入此回声的 Google URI 的单引号:

<?php echo do_shortcode( '[hungryfeed url="https://news.google.com/news/feeds?q='[[above function here]]'&output=rss" template="1" max_items="1"]' ); ?>

我不是特别精通PHP;任何人都可以建议解决此问题的最佳方法吗?

谢谢!

4

1 回答 1

1

您需要将第一个代码存储到变量中,然后将变量放入 url。像这样的东西可能会起作用

<?php

$tags = strip_tags(get_the_tag_list('','+',''));
echo do_shortcode('[hungryfeed url="https://news.google.com/news/feeds?q='.$tags.'&output=rss" template="1" max_items="1"]');

?>
于 2012-12-18T09:39:36.703 回答