Skip to content

Commit

Permalink
Issue #16 - display links to the S-word and B-word taxonomy terms
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbingwide committed Aug 28, 2018
1 parent 2b35084 commit 95ee51c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/searchor404.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ function genesis_sb_get_term( $label, $word, $taxonomy ) {
if ( $term ) {
echo '<br />';
$times = _n( 'Found %1$s %2$s once', 'Found %1$s %2$s %3$s times', $term->count, "genesis-SB" );
printf( $times, $label, $word, $term->count );
$link = retlink( null, get_term_link( $term ), $word );
printf( $times, $label, $link, $term->count );
}
return $term;
}
Expand Down

0 comments on commit 95ee51c

Please sign in to comment.