Skip to content

Instantly share code, notes, and snippets.

View techb's full-sized avatar

K.B. Carte techb

View GitHub Profile
@techb
techb / functions.php
Last active June 21, 2022 14:27
Disable WordPress search
<?php
// Yoink: https://www.wpbeginner.com/wp-tutorials/how-to-disable-the-search-feature-in-wordpress/
// Tested on WordPress: 5.9.3
// PHP: 8.0
/*
Instead of going to a search page, show 404 instead
*/
function wpb_filter_query( $query, $error = true ) {
if ( is_search() ) {
// Yoink: https://www.javascripttutorial.net/web-apis/javascript-formdata/
const btn = document.querySelector('#submit-btn-id');
const form = document.querySelector('#my-form-id');
btn.addEventListener('click', (e) => {
// prevent the form from submitting
// or uncomment the debugger statment below for a breakpoint
// if needing to also send the data for testing
e.preventDefault();