Skip to content

Instantly share code, notes, and snippets.

View sshawuk's full-sized avatar

Stephen Shaw sshawuk

  • Newcastle Upon Tyne
View GitHub Profile
@thomasgriffin
thomasgriffin / gist:bb64bcb7dd3303ade782
Created September 16, 2014 18:51
Remove Soliloquy sliders from search results.
<?php
add_filter( 'soliloquy_post_type_args', 'tgm_soliloquy_remove_from_search' );
function tgm_soliloquy_remove_from_search( $args ) {
$args['exclude_from_search'] = true;
return $args;
}