Skip to content

Instantly share code, notes, and snippets.

@robincornett
robincornett / functions.php
Last active April 29, 2019 14:59
Modify the "no content matched your criteria" message in Genesis
<?php
// do not include the opening tag
add_filter( 'genesis_noposts_text', 'leaven_change_search_text_one', 10, 2 );
function leaven_change_search_text_one( $text ) {
$text .= __( ' Would you like to try again?', 'leaven' );
$text .= get_search_form( false );
return $text;