mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
4 lines
163 B
Text
4 lines
163 B
Text
// Default: Viewing {post_count} of {total_posts} results.
|
|
add_filter('alm_display_results', function(){
|
|
return 'Now viewing {page} of {pages} total pages.';
|
|
});
|