<?php | |
add_filter('init', function(){ | |
global $wp; | |
$wp->add_query_var( 'search_query' ); | |
$wp->remove_query_var( 's' ); | |
} ); | |
add_filter( 'request', function( $request ){ | |
if ( isset( $_REQUEST['search_query'] ) ){ | |
$request['s'] = $_REQUEST['search_query']; | |
} | |
return $request; | |
} ); |
Great Tutorials -
ReplyDeleteetutorialspoint
Django bootstrap 4 form template
Django Pagination with Ajax and jQuery
Django ajax GET and POST request
How to display image from database in Django
Django upload image to database
Python Program to Check if a Number is Odd or Even
Python program to convert Celsius to Fahrenheit