SocialEngine - 链接到分类类别
我正在寻找一种方法来提供直接到社交分类类别的链接。看起来这将是一个非常通用的解决方案,可以通过 URL 或其他方式填充下拉菜单:p
如果你看这里 - http://demo.socialengine.net/classifieds
在右侧,您会看到一个过滤框,第一个选项是类别。一旦您选择了一个类别,页面就会重新加载(但 URL 不会改变),并显示所选类别。
我需要建立两个指向特定类别的链接,因此我希望有人可以提供一种有趣的方式来使其发挥作用。希望该演示网站能够提供足够的信息。
谢谢堆垛机!
I'm looking for a way to provide a link directly to a social classifieds category. It's looking like it will be a pretty generic solution to make a dropdown populate via URL, or something :p
If you look here - http://demo.socialengine.net/classifieds
On the right, you'll see a filter box, the first of the option is a category. As soon as you select a category the page reloads (but the url doesn't change) presenting the selected category.
I need to make 2 links to particular categories, so I'm hoping someone can provide an interesting way to make it work. Hopefully that demo site can give enough info.
Thanks Stackers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了一些方法,请尝试以下操作:
http://demo.socialengine.net/classifieds?category=6
在URL中传递category参数,但这是一个id,对SEO不太友好。
如果有其他好的解决方案,我会在这里更新。
I found some way, try bellow:
http://demo.socialengine.net/classifieds?category=6
Pass the category parameter in URL, but this is an id, not much SEO friendly.
I'll update here, if there is another good solution.
我希望这将创建一个下拉列表,其中包含下拉列表中每个选项的链接:
您只需要链接两个选项,您在 foreach 循环中给出条件,例如
if($key<2)
那么这将创建链接对于两个选项和其余选项,它只会形成一个下拉菜单。I hope this will make a drop down with links for each option within dropdown:
You need link for only two options you give condition within the foreach loop like
if($key<2)
then this will make link for two options and for rest it will simply form a dropdown.