modules/custom-post-types/testimonial.php 1 location
|
@@ 551-557 (lines=7) @@
|
| 548 |
|
|
| 549 |
|
$atts['showposts'] = intval( $atts['showposts'] ); |
| 550 |
|
|
| 551 |
|
if ( $atts['order'] ) { |
| 552 |
|
$atts['order'] = urldecode( $atts['order'] ); |
| 553 |
|
$atts['order'] = strtoupper( $atts['order'] ); |
| 554 |
|
if ( 'DESC' != $atts['order'] ) { |
| 555 |
|
$atts['order'] = 'ASC'; |
| 556 |
|
} |
| 557 |
|
} |
| 558 |
|
|
| 559 |
|
if ( $atts['orderby'] ) { |
| 560 |
|
$atts['orderby'] = urldecode( $atts['orderby'] ); |
modules/custom-post-types/portfolios.php 1 location
|
@@ 605-611 (lines=7) @@
|
| 602 |
|
$atts['showposts'] = intval( $atts['showposts'] ); |
| 603 |
|
|
| 604 |
|
|
| 605 |
|
if ( $atts['order'] ) { |
| 606 |
|
$atts['order'] = urldecode( $atts['order'] ); |
| 607 |
|
$atts['order'] = strtoupper( $atts['order'] ); |
| 608 |
|
if ( 'DESC' != $atts['order'] ) { |
| 609 |
|
$atts['order'] = 'ASC'; |
| 610 |
|
} |
| 611 |
|
} |
| 612 |
|
|
| 613 |
|
if ( $atts['orderby'] ) { |
| 614 |
|
$atts['orderby'] = urldecode( $atts['orderby'] ); |