| 158 | | if ( '' == get_option('permalink_structure') ) |
|---|
| 159 | | $output .= '<a href="' . get_permalink() . '&page=' . $i . '">'; |
|---|
| 160 | | else |
|---|
| 161 | | $output .= '<a href="' . trailingslashit(get_permalink()) . $i . '/">'; |
|---|
| | 158 | if ( '' == get_option('permalink_structure') ) { |
|---|
| | 159 | if ( $i == 1 ) |
|---|
| | 160 | $output .= '<a href="' . get_permalink() . $i . '">'; |
|---|
| | 161 | else |
|---|
| | 162 | $output .= '<a href="' . get_permalink() . '&page=' . $i . '">'; |
|---|
| | 163 | } else { |
|---|
| | 164 | if ( $i == 1 ) |
|---|
| | 165 | $output .= '<a href="' . get_permalink() . '">'; |
|---|
| | 166 | else |
|---|
| | 167 | $output .= '<a href="' . trailingslashit(get_permalink()) . user_trailingslashit($i) . '">'; |
|---|
| | 168 | } |
|---|