How To Exclude Pages from WordPress Search Results and Only Show Posts

How To Exclude Pages from WordPress Search Results and Only Show Posts

Tony Teaches Tech

4 года назад

4,722 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@Art-01
@Art-01 - 12.02.2023 04:33

Thank for sharing this code.

I am using Elementor and search widget from Crocoblocks, and this code not working for me.
So i ask AI to create a new code for me, and it works just fine now. Thank u again.

function modify_wp_search_query( $query ) {
if ( $query->is_search ) {
$query->set( 'post_type', array( 'post', 'product' ) );
}
return $query;
}
add_filter( 'pre_get_posts', 'modify_wp_search_query' );

Ответить
@unabletech-rr1jn
@unabletech-rr1jn - 29.11.2022 17:18

i love you men :)

Ответить
@sriganesh_ninja
@sriganesh_ninja - 12.11.2022 16:05

Restricting WordPress Search to Titles Only for Woocommerce products titles

Ответить
@azissyahputra1051
@azissyahputra1051 - 10.06.2022 11:32

Thanks :)

Ответить
@mircast0
@mircast0 - 28.04.2022 14:54

What if I only have posts added by the plugins CPT UI and Individual Fields? There are not showing in the search results.

Ответить
@naasthikan
@naasthikan - 05.01.2022 12:39

added this code but now search results shows nothing found for any keyword

Ответить
@higorprudencio5563
@higorprudencio5563 - 04.01.2022 14:05

Amazing i was trying to solve this problem a couple of times and it works. Thanks!

Ответить
@mzubairayub3983
@mzubairayub3983 - 16.11.2021 09:15

How can I Get Post by tags Or categories in search results.. 😔

Ответить
@caroltafuri
@caroltafuri - 12.07.2021 21:07

thank you so much

Ответить
@omar10074
@omar10074 - 06.04.2021 02:02

Gracias te amo

Ответить
@taniabee8697
@taniabee8697 - 29.01.2021 11:55

Thank you so much! It totally worked on my hello theme child.... You saved my life!

Ответить
@MIRKOKING
@MIRKOKING - 08.12.2020 01:52

thanks

Ответить
@qubadi9271
@qubadi9271 - 12.10.2020 17:12

it works for me, thank you so much....

Ответить
@CrackAnimee2
@CrackAnimee2 - 09.10.2020 12:51

Thanks mate! i was confident enough to use it on my parent theme and it worked!

Ответить
@user-jc5xw3qd3b
@user-jc5xw3qd3b - 05.07.2020 23:14

thanks .

Ответить
@MathOSX
@MathOSX - 02.07.2020 14:38

Hi Tony, I just tried to make your tip work for me. I am using WP 5.4.2 with the last version of OceanWP. I created a child theme and pasted the code at the end of functions.php, like you explained ... but it doesn't work :(
I get some part of the source code appear on top of the page (above the main menu) even if I don't trigger the search tool.

Ответить
@borednomad
@borednomad - 01.07.2020 07:23

Great tip, But is this only for the Generate Press Theme? I tried it on Astra Pro Child theme but it did not seem to work.

Ответить
@jooyoungjoung8292
@jooyoungjoung8292 - 25.06.2020 05:27

Hi, thanks for sharing this! one question. Is this still working for other themes? (I'm using Astra)

Ответить