This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package Customize WP (3rd Party Helper) | |
* @author [email protected] | |
* @version 1.1.13 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Numbered Pagination | |
* http://www.wpexplorer.com/pagination-wordpress-theme/ | |
*/ | |
if ( !function_exists( 'wpex_pagination' ) ) { | |
function wpex_pagination($wpex_query) { | |
$prev_arrow = is_rtl() ? '→' : '←'; | |
$next_arrow = is_rtl() ? '←' : '→'; | |
/* |