mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
197 B
Text
5 lines
197 B
Text
add_filter( 'aws_search_query_string', 'my_aws_search_query_string' );
|
|
function my_aws_search_query_string( $sql ) {
|
|
$sql = str_replace( 'LIMIT 0, 10', 'LIMIT 0, 5', $sql );
|
|
return $sql;
|
|
}
|