Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created July 30, 2024 23:54
Show Gist options
  • Save billerickson/a47e6b0c767e1fcc2235932cc6d6aed0 to your computer and use it in GitHub Desktop.
Save billerickson/a47e6b0c767e1fcc2235932cc6d6aed0 to your computer and use it in GitHub Desktop.
<?php
/**
* Display Posts, add support for s="current"
* @see https://displayposts.com/2024/07/30/display-the-current-search-results/
*
*/
function be_dps_current_search( $args, $atts ) {
if( !empty( $atts['s'] ) && 'current' == $atts['s'] ) {
$args['s'] = get_search_query();
}
return $args;
}
add_filter( 'display_posts_shortcode_args', 'be_dps_current_search', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment