Posts also searches in Pages
-
Hello,
If I search in post content it automaticly also searched in pages. I understand why, but nevertheless it would be nicer if this could be split.
To hardcode change this, is the only change needed:
$posts = $wpdb->get_results ( “SELECT ID, post_content, post_title FROM {$wpdb->posts} WHERE post_status != ‘inherit’ AND post_type IN (‘post’,’page’) ORDER BY ID $orderby” );
into:
$posts = $wpdb->get_results ( “SELECT ID, post_content, post_title FROM {$wpdb->posts} WHERE post_status != ‘inherit’ AND post_type IN (‘post’) ORDER BY ID $orderby” );
Or am I missing something? Thanks!
- The topic ‘Posts also searches in Pages’ is closed to new replies.