|
@@ 931-932 (lines=2) @@
|
| 928 |
|
|
| 929 |
|
ob_start(); |
| 930 |
|
|
| 931 |
|
if ( ! $is_singular && false !== $tags[ 'filters' ] && 'before' == $tags[ 'filters_location' ] ) |
| 932 |
|
echo $pod->filters( $tags[ 'filters' ], $tags[ 'filters_label' ] ); |
| 933 |
|
|
| 934 |
|
if ( ! $is_singular && 0 < $found && true === $tags[ 'pagination' ] && in_array( $tags[ 'pagination_location' ], array( 'before', 'both' ) ) ) |
| 935 |
|
echo $pod->pagination( $tags[ 'pagination_label' ] ); |
|
@@ 942-943 (lines=2) @@
|
| 939 |
|
if ( ! $is_singular && 0 < $found && true === $tags[ 'pagination' ] && in_array( $tags[ 'pagination_location' ], array( 'after', 'both' ) ) ) |
| 940 |
|
echo $pod->pagination( $tags[ 'pagination_label' ] ); |
| 941 |
|
|
| 942 |
|
if ( ! $is_singular && false !== $tags[ 'filters' ] && 'after' == $tags[ 'filters_location' ] ) |
| 943 |
|
echo $pod->filters( $tags[ 'filters' ], $tags[ 'filters_label' ] ); |
| 944 |
|
|
| 945 |
|
$return = ob_get_clean(); |
| 946 |
|
|