Hi There,
how to automatically display the previous page in breadcrumbs? I have this:
__
elseif ( is_singular( 'depoimentos' ) ) {
if ( $is_ltr ) {
echo '<a href="' . 'http://www.dsc-curitiba.com/intercambio/' . '">' . __( '**depoimento intercâmbio**' ) . '</a>' . $delimiter . $current_before . $page_title . $current_after;
} else {
echo $current_before . $page_title . $current_after . $delimiter . '<a href="' . get_permalink( ) . '">' . __( '?' ) . '</a>';
}
__
I want this to be automatically generated with the previous page name:
echo '<a href="' . 'http://www.dsc-curitiba.com/intercambio/' . '">' . __( '**depoimento intercâmbio**' ) . '</a>' .
Can you help with that?
Thanks



