我可以使用www.example.com/?customfield1=value1&customfield2=value2&feed=rss2生成Feed。生成的Feed应按customfield1和customfiel2的值进行过滤。
答案 0 :(得分:1)
使用“pre_get_posts”过滤器,您可以使用wordpress中的Feed进行任何自定义。
public static void main(String[] args) {
Thread thread = new Thread(new Runnable() {
public void run() {
try {
Thread.sleep(99999);
}
catch(InterruptedException e) {
System.out.println("I'm interrupted!!");
}
}
});
thread.start();
out.print(thread.isAlive()+" ");
thread.interrupt();
out.print(thread.isAlive()+" ");
}
享受!!
答案 1 :(得分:0)
您应该可以使用meta_key
和meta_value
将查询字符串附加到网址末尾:
http://example.com/feed/?meta_key=keyname&meta_value=valuename