소스 검색

:recycle: putting back type filter on sql query for by-episode

tags/0.9.0
J 4 년 전
부모
커밋
78f205acf2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      plugins/cia-endpoints/includes/class.make-sortby.php

+ 1
- 1
plugins/cia-endpoints/includes/class.make-sortby.php 파일 보기

167
             ON (wp_p2p.p2p_from = wp_posts.ID OR wp_p2p.p2p_to = wp_posts.ID) 
167
             ON (wp_p2p.p2p_from = wp_posts.ID OR wp_p2p.p2p_to = wp_posts.ID) 
168
             LEFT JOIN wp_posts AS header 
168
             LEFT JOIN wp_posts AS header 
169
             ON header.ID = IF(wp_posts.ID = wp_p2p.p2p_to, wp_p2p.p2p_from, wp_p2p.p2p_to) 
169
             ON header.ID = IF(wp_posts.ID = wp_p2p.p2p_to, wp_p2p.p2p_from, wp_p2p.p2p_to) 
170
-            WHERE wp_posts.post_status = 'publish' 
170
+            WHERE wp_posts.post_type = %s AND wp_posts.post_status = 'publish' 
171
                 AND (wp_p2p.p2p_type = %s OR wp_p2p.p2p_type = %s) 
171
                 AND (wp_p2p.p2p_type = %s OR wp_p2p.p2p_type = %s) 
172
             ORDER BY header.post_date DESC, related_episode, wp_posts.post_date DESC",
172
             ORDER BY header.post_date DESC, related_episode, wp_posts.post_date DESC",
173
             trim($type, 's'), $type . '_to_episodes' , 'episodes_to_' . $type,
173
             trim($type, 's'), $type . '_to_episodes' , 'episodes_to_' . $type,

Loading…
취소
저장