"post_title LIKE 'something %'"이있는 WP_Query?
에 WP_Query와 (과) 함께 해야 LIKE합니다 post_title. 나는이 정규식으로 시작했습니다 WP_Query. $wp_query = new WP_Query( array ( 'post_type' => 'wp_exposants', 'posts_per_page' => '1', 'post_status' => 'publish', 'orderby' => 'title', 'order' => 'ASC', 'paged' => $paged ) ); 그러나 실제로 실제로하고 싶은 것은 SQL에서 다음과 같습니다. $query = " SELECT * …