Skip to content

Instantly share code, notes, and snippets.

@ediamin
Last active December 26, 2015 13:45
Show Gist options
  • Save ediamin/5c5c64a993478be53d73 to your computer and use it in GitHub Desktop.
Save ediamin/5c5c64a993478be53d73 to your computer and use it in GitHub Desktop.
Filter Search Result Post Link
<?php
add_filter( 'post_link', 'filter_search_result_post_link', 10, 3 );
function filter_search_result_post_link( $permalink, $post, $leavename ) {
if ( is_search() && in_the_loop() ) {
$permalink = add_query_arg( 'ref', 'search', $permalink );
}
return $permalink;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment