Answers for "warning: parameter 2 to search_by_title() expected to be a reference, value given inwp-includes\class-wp-hook.php on line 287"

PHP
0

warning: parameter 2 to search_by_title() expected to be a reference, value given inwp-includes\class-wp-hook.php on line 287

#Custom theme (old themes that does not support the new PHP 7.1+ version)
#PHP 7.1 doesn’t like & in front of $query parameters in functions.
#In the Themes -> <your-theme> -> functions.php -> search the code and remove the &
__search_by_title_only( $search, $wp_query ) {
Posted by: Guest on July-20-2020
0

warning: parameter 2 to search_by_title() expected to be a reference, value given inwp-includes\class-wp-hook.php on line 287

#PHP 7.1 doesn’t like & in front of $query parameters in functions.
#If the problem is due a plugin search the & and remove it
Posted by: Guest on July-20-2020

Code answers related to "warning: parameter 2 to search_by_title() expected to be a reference, value given inwp-includes\class-wp-hook.php on line 287"

Browse Popular Code Answers by Language