name );
}
else if ( function_exists( ‘epl_is_search’ ) && epl_is_search() ) { // Search Result
$title = __( ‘Search Result’, ‘epl’ );
}
else if ( function_exists( ‘is_post_type_archive’ ) && is_post_type_archive() && function_exists( ‘post_type_archive_title’ ) ) { // Post Type Archive
$title = post_type_archive_title( ”, false );
}
else { // Default catchall just in case
$title = __( ‘Listing’, ‘epl’ );
}
if ( is_paged() )
printf( ‘%s – Page %d’, $title, get_query_var( ‘paged’ ) );
else
echo $title;
rewind_posts();
?>









