Posted in: Newspaper
Jan 10, 2015 at 5:56 pm
Hi!
when i try to search something like MOSTAR PRIJE; here is a example http://crnjaci.com/?s=mostar+prije, I get the results of my homepage (NASLOVNICA) and its codes, how i can repair that? it’s look terrible
Jan 10, 2015 at 11:39 pm
sorry Chris S. can you look my eighth post in this link http://crnjaci.com/?s=mostar+prije, maybe i wasn’t clear enough first time 🙂 thanks
Jan 12, 2015 at 4:48 pm
Hi,
Add this function to your theme functions file: http://screencast.com/t/XB2LpOjyfR6
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
Thanks
-
This reply was modified 11 years by
Lucian.
Jan 14, 2015 at 4:44 pm
Hi,
Use it like this:
function SearchFilter($query) {
if ($query->is_search && ! is_admin()) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
.. or just add the && ! is_admin() part to the condition.
Thanks
-
This reply was modified 11 years by
Lucian.
Viewing 9 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic.
