“Search results for” or the_title do not appear in the bar.
It should not be ?
echo __( 'Search results for', 'pinboard' ) . ': "' . get_search_query() . '"';
On other hand, i want to display #current-location only for search result, how to do this ?
Perahps i’ve got it, i replaced :
if ( ! ( is_home() && ! is_paged() ) && ! is_singular() || isset( $pinboard_page_template ) ) {
with
if ( is_search() ) {
this change is good ?