wordpress:如何检查slug是否包含特定单词?
我正在尝试使用条件语句来检查两个单词(博客和新闻)中是否出现在段中。如果其中一个出现,我将显示一个菜单,如果另一个则显示其相应的菜单。
I'm trying to use a conditional statement to check if either of two words (blog & news) appear in the slug. If one shows up I will display one menu, if the other then its corresponding menu shows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PHP:
http://www.php.net/manual/en/function。 strpos.php
Using PHP:
http://www.php.net/manual/en/function.strpos.php
这是一个 JavaScript 版本。
您可以在此处了解有关 indexOf 的更多信息: https: //developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf
Here is a javascript version.
You can learn more about indexOf here: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf