如何使用自定义字段过滤wordpress feed?

时间:2015-06-15 07:50:24

标签: php wordpress

我可以使用www.example.com/?customfield1=value1&customfield2=value2&feed=rss2生成Feed。生成的Feed应按customfield1和customfiel2的值进行过滤。

2 个答案:

答案 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_keymeta_value将查询字符串附加到网址末尾:

http://example.com/feed/?meta_key=keyname&meta_value=valuename