我正在尝试使用下面的参考链接代码
来过滤带有元查询的组https://gist.github.com/boonebgorges/2638943
我在function.php
以及我在div /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/groups/index.php
的{{1}}中添加的spinet代号
groups dir-list
现在,如果您访问组页面,此代码会过滤具有meta key = group-custom-field-cat和value = Art and Culture的组。此解决方法可以很好地工作。
在同一页面上,我必须添加一个带有选项$meta_filter = new BP_Groups_Meta_Filter( 'group-custom-field-cat', 'Art and Culture' ); //print_r($meta_filter);
echo @json_decode($meta_filter, true);
如果用户选择此选项,它将调用ajax查询并运行以下代码,以便在具有元键和值如bellow.so的情况下过滤组。如何调用ajax。
Art and Culture
工作示例: - http://tamrielfoundry.com/groups/
任何人都可以知道如何调用符合我需要的ajax查询。