modules/custom-post-types/testimonial.php 1 location
|
@@ 531-537 (lines=7) @@
|
| 528 |
|
|
| 529 |
|
$atts['showposts'] = intval( $atts['showposts'] ); |
| 530 |
|
|
| 531 |
|
if ( $atts['order'] ) { |
| 532 |
|
$atts['order'] = urldecode( $atts['order'] ); |
| 533 |
|
$atts['order'] = strtoupper( $atts['order'] ); |
| 534 |
|
if ( 'DESC' != $atts['order'] ) { |
| 535 |
|
$atts['order'] = 'ASC'; |
| 536 |
|
} |
| 537 |
|
} |
| 538 |
|
|
| 539 |
|
if ( $atts['orderby'] ) { |
| 540 |
|
$atts['orderby'] = urldecode( $atts['orderby'] ); |
modules/custom-post-types/portfolios.php 1 location
|
@@ 444-450 (lines=7) @@
|
| 441 |
|
$atts['showposts'] = intval( $atts['showposts'] ); |
| 442 |
|
|
| 443 |
|
|
| 444 |
|
if ( $atts['order'] ) { |
| 445 |
|
$atts['order'] = urldecode( $atts['order'] ); |
| 446 |
|
$atts['order'] = strtoupper( $atts['order'] ); |
| 447 |
|
if ( 'DESC' != $atts['order'] ) { |
| 448 |
|
$atts['order'] = 'ASC'; |
| 449 |
|
} |
| 450 |
|
} |
| 451 |
|
|
| 452 |
|
if ( $atts['orderby'] ) { |
| 453 |
|
$atts['orderby'] = urldecode( $atts['orderby'] ); |