Skip to content

Instantly share code, notes, and snippets.

View andrealandonio's full-sized avatar

Andrea Landonio andrealandonio

View GitHub Profile
@andrealandonio
andrealandonio / gist_override_search_with_cs.php
Last active April 20, 2017 09:48
Override WordPress search page using CloudSearch plugin
<?php
// Header
get_header();
// Get search keyword
$keyword = get_search_query();
// Prepare filter query
$filter_query = '';
?>
@andrealandonio
andrealandonio / gist_custom_cs_search.php
Last active April 18, 2017 09:22
Custom CS search page
<?php
// Includes
include_once('../wp-load.php');
// Set timeout
set_time_limit(0);
// Set default timezone
date_default_timezone_set('Europe/Rome');