Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在上面创建了一些自定义查询使用过滤器,但为什么不影响单个帖子?过滤器在帖子循环中运行良好。
这里是示例代码。
add_filter( 'posts_join', 'my_join' ); function my_join( $join ) { $join .= " some sql "; return $join; }