IT

워드프레스:"wp_query" 클래스로 "post_content" 게시물을 검색하는 방법은 무엇입니까?

itgroup 2023. 10. 20. 13:34
반응형

워드프레스:"wp_query" 클래스로 "post_content" 게시물을 검색하는 방법은 무엇입니까?

제목에서 알 수 있듯이, 저는 그것을 통해 게시물을 찾으려고 노력하고 있습니다.post_content. 어떻게 하면 되죠?감사해요.

예:SELECT * FROM DBname WHERE post_content LIKE '%phrase%'

또는 "WP_Query" 클래스를 실제로 사용하여 이 작업을 수행할 수 있습니다.

// The Query
$my_query = new WP_Query( array(
    'post_type' => 'post',
    's' => 'phrase'
));

// The Loop
while ( $my_query->have_posts() ) {
    $my_query->the_post();
    get_content();
    //...
}

이런 거?

$result = $wpdb->get_results( "SELECT * FROM wp_posts WHERE post_content LIKE '%phrase%'" );
  if ($result){
    foreach($result as $pageThing){
      echo $pageThing->post_content;
    }
  }

언급URL : https://stackoverflow.com/questions/9677039/wordpress-how-search-a-post-for-post-content-with-wp-query-class

반응형