在 Wordpress 中,我希望有多个嵌入的 URL,这些 URL 可以根据用户输入而变化。结果将是一个顶部搜索栏,用户可以在其中输入内容,从而更改嵌入的 URL...
在 Wordpress 中,我希望嵌入多个 URL,这些 URL 会根据用户输入而变化。结果将是一个顶部搜索栏,用户可以在其中输入内容,从而更改页面下半部分嵌入的 URL。
//For instance, the user types in the search bar:
XYZ = “Tacos”
ImbedURL1= “search.yahoo.com/search?p=“XYZ
//to become the resulting Link
search.yahoo.com/search?p=Tacos
//I could have other imbeds so that someone could also search google for “Tacos” at the same time.
这有意义吗?
我一直在阅读不同的 Wordpress 插件,如果您推荐自定义块,我会采纳。谢谢大家。